#include <iostream>#include <set>using namespace std;int main(){set<int> s;int n1, n2, i;cin >> n1 >> n2;for (i = 0; i < n1; i++){int a;cin >> a;s.insert(a);}for (i = 0; i < n2; i++){int a;cin >> a;if (s.count(a))s.erase(a);elses.insert(a);}cout << s.size() << endl;return 0;}
'백준' 카테고리의 다른 글
[11895] 속이기 (0) | 2018.08.23 |
---|---|
[2456] 나는 학급회장이다 (0) | 2018.08.23 |
[9971] The Hardest Problem Ever (0) | 2018.08.19 |
[9455] 박스 (0) | 2018.08.19 |
[13240] chessboard (0) | 2018.08.19 |