摘要:
香甜的黄油 #include<iostream> #include<cstring> #include<cmath> #define M 0x3f3f3f3f using namespace std; const int N=805; int mapp[N][N],P[N]; int main(){ 阅读全文
摘要:
最小花费 注意事项: Floyd算法复杂度过不去。 #include<iostream> #include<cstring> #include<cmath> using namespace std; const int N=2005; double mapp[N][N],c[N]; bool f[N 阅读全文
摘要:
牛的旅行 注意事项: - 枚举所有连接两个牧场的路径并找出其中的最短路径,最后别忘了跟单个牧场的直径相比较 - 用scanf("%c",&c)替换cin>>c只能拿20分,别问我为什么,我不知道(灬ꈍ ꈍ灬) #include<iostream> #include<cstring> #include 阅读全文