Silver Cow Party POJ 3268 SPFA
摘要:
这个题我是这么做的,本来想用Floyd写,但是看到n 2 #include 3 #include 4 #define MAXN 1005 5 #define INF 1000000 6 using namespace std; 7 int n; 8 int num[2][MAXN]; 9 int time[2][MAXN];10 bool s[MAXN];11 struct ArcNode12 {13 int v,w;14 } edge[2][MAXN][MAXN];15 void SPFA(int vo,int ser)16 {17 int i,j;18 queu... 阅读全文
posted @ 2013-04-01 20:58 allh123 阅读(118) 评论(0) 推荐(0) 编辑