2012年7月21日

【解题报告】【HDOJ2544】【Floyd最短路】最短路

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2544 1 #include<stdio.h> 2 #include<string.h> 3 #define INF 0x3f3f3f3f 4 #define min(a,b) (a>b?b:a) 5 int map[101][101]; 6 int main() 7 { 8 int n,m,i,j,k,a,b,c; 9 //freopen("1.txt","r",stdin);10 while(scanf("%d%d& 阅读全文

posted @ 2012-07-21 18:23 coding封神 阅读(146) 评论(0) 推荐(0) 编辑

导航