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

【Henu ACM Round#15 B】A and B and Compilation Errors

时间:2018-01-25 13:09:07      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:errors   pos   ons   cin   names   class   break   链接   pre   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


开3个map,
存在map里面;
然后迭代第一个和第二个map;
分别与第二个和第三个map比较就可以了

【代码】

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5;

map<int,int> m[3];
int n;

int main()
{
    cin >> n;
    for (int i = 0;i<3;i++){
        for (int j = 1;j <= n-i;j++){
            int x;
            cin >> x;
            m[i][x]++;
        }
    }
    int x;
    for (auto temp:m[0]){
        int dd = temp.first,ee = temp.second;
        if (m[1][dd]!=ee){
            x = dd;
            break;
        }
    }
    int y;
    for (auto temp:m[1]){
        int dd = temp.first,ee = temp.second;
        if (m[2][dd]!=ee){
            y = dd;
            break;
        }
    }
    cout << x <<' '<<y<<endl;
    return 0;
}

【Henu ACM Round#15 B】A and B and Compilation Errors

标签:errors   pos   ons   cin   names   class   break   链接   pre   

原文地址:https://www.cnblogs.com/AWCXV/p/8350605.html

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