2012年7月21日

【解题报告】【HDOJ1596】【Floyd最短路】find the safest road

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

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

导航