#include <iostream>
#include <vector>
using namespace std;
const int N=1e5+10,M=1e5+10;
int n,m,x,y,w;
bool v[N];
vector< pair<int,int> > head[N];
void dfs(int t){
for(int i=0;i<head[t].size();i++){
if(v[head[t][i].first]) continue;
v[head[t][i].first]=true;
dfs(head[t][i].first);
}
}
int main() {
cin>>n>>m;
for(int i=1;i<=m;i++){
cin>>x>>y>>w;
head[x].push_back(make_pair(y,w));
}
return 0;
}
相关文章
- 02-26WPF树形菜单--递归与非递归遍历生成树结构的集合
- 02-26UML 小结(6)- UML九种图的比较与学习
- 02-26找出列表中重复的元素:遍历列表并存储每个元素及出现的次数
- 02-26浮点与定点的二进制存储
- 02-26SCAU 8648 图的深度遍历
- 02-26Leetcode 802. 找到最终的安全状态 DFS与构建反向图进行拓扑排序
- 02-26图的遍历实现
- 02-26pandas对excel遍历读取与填充:涉及多张表的保存、NAN的类型处理、NAN的处理(str类型下)
- 02-262021/9/27 顺序存储二叉树 + 线索化二叉树的生成与遍历
- 02-26[OC Foundation框架 - 7] NSArray的创建与遍历