摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1874floyd: 62MSView Code 1 #include<iostream> 2 using namespace std ; 3 #define maxn 210 4 const int oo = 1<<28 ; 5 int map[maxn][maxn] ; 6 int n ; 7 void init() 8 { 9 for(int i=0; i<n; i++)10 for(int j=0; j<n; j++)11 {12 map[i][j] = oo ... 阅读全文
posted @ 2013-03-05 22:39 yelan@yelan 阅读(130) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2544View Code 1 #include<stdio.h> 2 #include<string.h> 3 const int oo = 1<<28 ; 4 const int maxn = 1005 ; 5 int map[maxn][maxn] ; 6 int visit[maxn] ; 7 int n, m ; 8 int len ; 9 int floyd()10 {11 for(int k=1; k<=len; k++)12 {13 for(int i= 阅读全文
posted @ 2013-03-05 21:10 yelan@yelan 阅读(321) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1486&cid=1148View Code 1 #include<stdio.h> 2 int main() 3 { 4 int t, a ; 5 scanf("%d", &t) ; 6 while(t--) 7 { 8 scanf("%d", &a) ; 9 double m = 1.0*360/(180-a) ; 10 int n = 360/(180-a) ; 11 ... 阅读全文
posted @ 2013-03-05 19:58 yelan@yelan 阅读(141) 评论(0) 推荐(0) 编辑