Henu ACM Round#15 BA and B and Compilation Errors

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Henu ACM Round#15 BA and B and Compilation Errors相关的知识,希望对你有一定的参考价值。

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


在这里输入题意

【题解】


开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 BA and B and Compilation Errors的主要内容,如果未能解决你的问题,请参考以下文章

Henu ACM Round#15 A A and B and Chess

Henu ACM Round#15 C A and B and Team Training

Henu ACM Round#15 FArthur and Questions

Henu ACM Round#16 A Bear and Game

Henu ACM Round#15 E A and B and Lecture Rooms

Henu ACM Round#14 AVitaly and Night