摘要: //头文件省略 struct Edge { int from, to, val; Edge(int f = 0, int t = 0, int v = 0) : from(f), to(t), val(v) {} }; struct Graph { vector<vector<int>> graph 阅读全文
posted @ 2022-02-20 20:26 hellozhangjz 阅读(37) 评论(0) 推荐(0)