摘要: 1 #include 2 using namespace std; 3 4 struct Vertex{ 5 int start, end; 6 int weight; 7 }; 8 Vertex arr[10000]; 9 int par[10000]; 10 int n, m; 11 int find(int n){ 12 while(par[n... 阅读全文
posted @ 2017-04-29 01:04 Vincent_Bryan 阅读(341) 评论(0) 推荐(0) 编辑