摘要: #include #include #include using namespace std; const int maxn = 32; const int INF = 99999999; int map[maxn][maxn],n,m,dis[maxn][maxn]; int max(int x,int y) { return x>y?x:y; } int floyd() { ... 阅读全文
posted @ 2015-10-13 22:30 sweat123 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include using namespace std; struct node { char s[60]; int v; int flag; int cou; }a[300]; bool cmp(node fa,node fb) { if(fa.v!=fb.v) ... 阅读全文
posted @ 2015-10-13 22:30 sweat123 阅读(132) 评论(0) 推荐(0) 编辑