摘要:
最短路径问题 Floyd算法 #include<iostream> #include<cstdio> #include<cmath> #include<cstring> using namespace std; const int N=105; int a[N][2]; double d[N][N] 阅读全文
摘要:
骑马修栅栏 题解参考至shake_jake 本来想优化优化的,然后就... 提交了18次┭┮﹏┭┮(至死也没明白为什么wrong了?)。 #include<iostream> #include<algorithm> #include<cstdio> using namespace std; cons 阅读全文