摘要: const int N=2e2+55; const ll inf=0x3f3f3f3f3f3f3f; struct Edge { int t; ll v; }; vectorg[N]; void add(int u,int v,ll w) { g[u].push_back({v,w}); g[v].push_back({u,w}); } ll d[N]; bool... 阅读全文
posted @ 2019-07-30 19:17 Suiyue_Li 阅读(188) 评论(0) 推荐(0)