码迷,mamicode.com
首页 > 其他好文 > 详细

CF814B An express train to reveries

时间:2017-06-18 15:10:38      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:int   ever   const   strong   express   枚举   ++   ios   i++   

思路:

模拟,枚举。

实现:

 1 #include <iostream>
 2 using namespace std;
 3 
 4 const int N = 1005;
 5 
 6 int a[N], b[N], cnt[N], n, x, y;
 7 
 8 int main()
 9 {
10     cin >> n;
11     for (int i = 0; i < n; i++) cin >> a[i], cnt[a[i]]++;
12     for (int i = 0; i < n; i++) cin >> b[i];
13     for (int i = 1; i <= n; i++)
14     {
15         if (cnt[i] == 2) x = i;
16         else if (cnt[i] == 0) y = i;
17     }
18     for (int i = 0; i < n; i++)
19     {
20         if (a[i] == x)
21         {
22             a[i] = y;
23             int bad = 0;
24             for (int j = 0; j < n; j++)
25                 if (b[j] != a[j]) bad++;
26             if (bad == 1)
27             {
28                 for (int j = 0; j < n; j++) cout << a[j] << " ";
29                 return 0;
30             }
31             a[i] = x;
32         }
33     }
34     return 0;
35 }

 

CF814B An express train to reveries

标签:int   ever   const   strong   express   枚举   ++   ios   i++   

原文地址:http://www.cnblogs.com/wangyiming/p/7044282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!