摘要: 因为QM混乱的原因,白白WA了好几次AC 0MS 228K 1 #include <queue> 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <memory.h> 5 using namespace std; 6 7 const int maxn = 101; 8 const int INF = 0x3F3F3F3F; 9 10 int a, b, c, nNum, mNum;11 int g[maxn][maxn], QM[maxn], dist[maxn];12 13 int S 阅读全文
posted @ 2012-04-09 20:27 Maxwell:My Blog 阅读(1038) 评论(0) 推荐(2) 编辑