-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeforces_Arena.cpp
More file actions
52 lines (33 loc) · 832 Bytes
/
Codeforces_Arena.cpp
File metadata and controls
52 lines (33 loc) · 832 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
52
#include <bits/stdc++.h>
using namespace std;
void countHerowinner(vector <int> heroLevels) {
int countWinner = 0;
for(int i = 0; i < heroLevels.size(); i++) {
for(int x = 0; x < heroLevels.size(); x++) {
if(i == x) {
continue;
}
else if(heroLevels[x] < heroLevels[i]) {
countWinner++;
break;
}
}
}
cout << countWinner << endl;
}
int main() {
int tCase;
cin >> tCase;
while(tCase--) {
int nOfhero;
cin >> nOfhero;
vector < int > heroList;
for(int i = 0; i < nOfhero; i++) {
int heroLevel;
cin >> heroLevel;
heroList.push_back(heroLevel);
}
countHerowinner(heroList);
}
return 0;
}