1
+ #include < algorithm>
1
2
#include < iostream>
2
- #include < vector>
3
- #include < unordered_set>
4
- #include < unordered_map>
5
3
#include < queue>
6
4
#include < sstream>
7
- #include < algorithm>
5
+ #include < unordered_map>
6
+ #include < unordered_set>
7
+ #include < vector>
8
8
9
9
using namespace std ;
10
10
11
11
class Table {
12
- unordered_map<int , int > who_has_what ;
12
+ unordered_map<int , int > whoHasWhat ;
13
13
priority_queue<pair<int , int >> biggest;
14
14
priority_queue<pair<int , int >, vector<pair<int , int >>, greater<pair<int , int >>> smallest;
15
15
int center;
16
16
17
- public:
18
- Table (int center, vector<int >& arr){
17
+ public:
18
+ Table (int center, vector<int >& arr) {
19
19
this ->center = center;
20
20
21
- for (int i = 0 ; i < arr.size (); i++){
22
- who_has_what [i] = arr[i];
21
+ for (int i = 0 ; i < arr.size (); i++) {
22
+ whoHasWhat [i] = arr[i];
23
23
smallest.push ({arr[i], i});
24
24
biggest.push ({arr[i], -i});
25
25
}
26
26
}
27
27
28
- pair<int , int > push_to_center (int new_element){
29
-
30
- while (who_has_what[smallest.top ().second ] != smallest.top ().first ){
28
+ pair<int , int > pushToCenter (int newElement) {
29
+ while (whoHasWhat[smallest.top ().second ] != smallest.top ().first ) {
31
30
smallest.pop ();
32
31
}
33
32
34
- auto top = smallest.top (); smallest.pop ();
33
+ auto top = smallest.top ();
34
+ smallest.pop ();
35
35
36
- who_has_what [top.second ] = this ->center ;
36
+ whoHasWhat [top.second ] = this ->center ;
37
37
smallest.push ({this ->center , top.second });
38
- biggest.push ({this ->center , -top.second }); // TODO: correct second element
38
+ biggest.push ({this ->center , -top.second });
39
39
40
- this ->center = new_element ;
40
+ this ->center = newElement ;
41
41
42
42
return {top.first , top.second + 1 };
43
43
}
44
44
45
- int pop_from_center (int new_element){
46
-
47
- while (who_has_what[-biggest.top ().second ] != biggest.top ().first ){
45
+ int pop_from_center (int newElement) {
46
+ while (whoHasWhat[-biggest.top ().second ] != biggest.top ().first ) {
48
47
biggest.pop ();
49
48
}
50
49
51
- auto top = biggest.top (); biggest.pop ();
52
-
53
- int previous_center_val = this ->center ;
50
+ auto top = biggest.top ();
51
+ biggest.pop ();
52
+
53
+ int previousCenterValue = this ->center ;
54
54
this ->center = top.first ;
55
55
56
- who_has_what[-top.second ] = new_element;
57
- smallest.push ({new_element, -top.second });
58
- biggest.push ({new_element, top.second });
59
-
60
- return previous_center_val;
61
- }
56
+ whoHasWhat[-top.second ] = newElement;
57
+ smallest.push ({newElement, -top.second });
58
+ biggest.push ({newElement, top.second });
62
59
60
+ return previousCenterValue;
61
+ }
63
62
};
64
63
65
- int main (int argc, char ** argv){
66
-
64
+ int main () {
67
65
ios_base::sync_with_stdio (false );
68
66
cin.tie (NULL );
69
67
@@ -73,22 +71,18 @@ int main(int argc, char** argv){
73
71
vector<int > arr (n);
74
72
for (int i = 0 ; i < n; i++)
75
73
cin >> arr[i];
76
-
74
+
77
75
Table table = Table (center, arr);
78
76
79
- for (int i = 0 ; i < m; i++){
80
- int q_type, new_element ;
81
- cin >> q_type >> new_element ;
77
+ for (int i = 0 ; i < m; i++) {
78
+ int q_type, newElement ;
79
+ cin >> q_type >> newElement ;
82
80
83
- if (q_type == 1 ){
84
- auto ret_val = table.push_to_center (new_element );
81
+ if (q_type == 1 ) {
82
+ auto ret_val = table.pushToCenter (newElement );
85
83
cout << ret_val.first << " " << ret_val.second << " \n " ;
86
- }
87
- else if (q_type == 2 ){
88
- cout << table.pop_from_center (new_element) << " \n " ;
89
- }
90
- else {
91
- cerr << " Hatali islem!\n " ;
84
+ } else {
85
+ cout << table.pop_from_center (newElement) << " \n " ;
92
86
}
93
87
}
94
88
0 commit comments