-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path100297.cpp
68 lines (59 loc) · 1.85 KB
/
100297.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <vector>
#include <unordered_map>
#include <deque>
using namespace std;
class Solution {
public:
int findWinningPlayer(vector<int>& skills, int k) {
unordered_map<int, int> umap;
for (int i = 0; i < skills.size(); i++) {
umap[skills[i]] = i;
}
int index = 1;
int count = 0;
deque<int> deq(skills.begin(), skills.end());
while (count < k) {
index++;
int x = deq.front();
deq.pop_front();
int y = deq.front();
deq.pop_front();
if (index > skills.size()) {
deq.push_front(x);
break;
} else if (x > y) {
deq.push_front(x);
deq.push_back(y);
count++;
} else {
deq.push_front(y);
deq.push_back(x);
count = 1;
}
}
return umap[deq.front()];
}
};
int main() {
Solution solution;
vector<int> skills;
int k;
// Test case 1
skills = {2, 5, 4};
k = 3;
cout << "Winning player index: " << solution.findWinningPlayer(skills, k) << endl; // Expected output: index of player with skill 5
// // Test case 2
// skills = {1, 3, 2, 4};
// k = 1;
// cout << "Winning player index: " << solution.findWinningPlayer(skills, k) << endl; // Expected output: index of player with skill 3
// // Test case 3
// skills = {6, 1, 5, 2, 3, 4};
// k = 3;
// cout << "Winning player index: " << solution.findWinningPlayer(skills, k) << endl; // Expected output: index of player with skill 6
// // Test case 4
// skills = {3, 2, 1};
// k = 5;
// cout << "Winning player index: " << solution.findWinningPlayer(skills, k) << endl; // Expected output: index of player with skill 3
return 0;
}