-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy path1722C-WordGame.cpp
40 lines (33 loc) · 1.02 KB
/
1722C-WordGame.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <vector>
#include <set>
int main(){
const int N = 3;
std::ios_base::sync_with_stdio(false);
long t; std::cin >> t;
while(t--){
long n; std::cin >> n;
std::vector<std::set<std::string> > v(N);
for(long p = 0; p < N; p++){
for(long q = 0; q < n; q++){
std::string s; std::cin >> s;
v[p].insert(s);
}
}
std::vector<long> score(N, 0);
for(long p = 0; p < N; p++){
for(std::set<std::string>::iterator it = v[p].begin(); it != v[p].end(); it++){
std::string x = *it;
long cnt(0);
for(long q = 0; q < N; q++){
if(q == p){continue;}
cnt += v[q].count(x);
}
if(cnt == 0){score[p] += 3;}
else if(cnt == 1){score[p] += 1;}
}
}
for(long p = 0; p < N; p++){std::cout << score[p] << " ";}
std::cout << std::endl;
}
}