摘要: http://acm.hdu.edu.cn/showproblem.php?pid=4396二维最短路 以这个点和到这个点的路径数作为一个点来标记View Code 1 #include <iostream> 2 #include<cstdio> 3 #include<string.h> 4 #include<queue> 5 #define INF 0xfffffff 6 using namespace std; 7 struct node 8 { 9 int v,w,next;10 }men[200011];11 struct mode12 阅读全文
posted @ 2012-08-25 20:08 _雨 阅读(217) 评论(0) 推荐(0) 编辑