摘要:
题目链接:Link Problem Solution 这题是个双倍经验 Code #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int maxn=5005; int n,rlen=1 阅读全文
摘要:
题目链接:Link Problem Solution 这题几乎是一个裸的无向图最小环,用一个数组记录最短路的中间节点是什么即可。 Code #include<cstdio> #include<cstring> #include<algorithm> #include<vector> using na 阅读全文