标签:号码 情况 add int 作者 修复 题目 color bre
1 /* 2 作者:11101001 3 题目:p2039 骑马修栅栏 4 */ 5 6 /* 7 //如何写一份可以提交的代码?以P1000 A+B为例 8 #include <iostream> 9 using namespace std; 10 int main() 11 { 12 int a, b; //定义两个变量名 13 cin >> a >> b; //从标准输入流中输入两个整数 14 cout << a + b << endl; //输出到标准输出流中 15 16 } 17 // 完成程序以后,点击下方的提交,即可看到测试结果 18 */ 19 #include<iostream> 20 #include<cstdio> 21 #include<cmath> 22 using namespace std; 23 int maps[2000][2000]; 24 int add[10001]; 25 int vis[2000]; 26 int n,m; 27 int ans[2000]; 28 int now=1; 29 int flag=1; 30 int maxn=0,maxnnow=0; 31 void dfs(int i) { 32 for(int j=1; j<=maxn; j++) 33 { 34 if(maps[i][j]>0) { 35 maps[j][i]--; 36 maps[i][j]--; 37 dfs(j); 38 } 39 } 40 ans[now]=i; 41 now++; 42 } 43 int main() 44 { 45 46 scanf("%d",&n); 47 m=n; 48 for(int i=1; i<=m; i++) 49 { 50 int x,y; 51 scanf("%d%d",&x,&y); 52 maps[y][x]++; 53 maps[x][y]++; 54 add[x]++; 55 add[y]++; 56 maxn=max(maxn,max(x,y)); 57 } 58 flag=0; 59 for(int i=1; i<=maxn; i++) 60 if(add[i]%2==1) { 61 flag=i; 62 break; 63 } 64 if(flag==0){ 65 for(int i=1;i<=maxn;i++){ 66 if(add[i]>0)flag=i; 67 break; 68 } 69 } 70 dfs(flag); 71 for(int i=now-1; i>=1; i--)cout<<ans[i]<<endl; 72 return 0; 73 }
标签:号码 情况 add int 作者 修复 题目 color bre
原文地址:http://www.cnblogs.com/sssy/p/6683160.html