Task: | Pair sort |
Sender: | odanobunaga8199 |
Submission time: | 2024-09-25 16:25:55 +0300 |
Language: | C++ (C++20) |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | ACCEPTED | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.00 s | details |
#13 | ACCEPTED | 0.01 s | details |
#14 | ACCEPTED | 0.01 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:31:17: warning: unused variable 'current_num_at_i1' [-Wunused-variable] 31 | int current_num_at_i1 = arr[i+1]; | ^~~~~~~~~~~~~~~~~
Code
#include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; vector<int> arr(2*n); for(auto &x: arr) cin >> x; vector<vector<int>> positions(n+1, vector<int>()); for(int i=0; i < 2*n; ++i){ positions[arr[i]].push_back(i); } vector<pair<int, int>> swaps; for(int i=0; i < 2*n; i +=2){ int first_num = arr[i]; int second_pos; if(positions[first_num][0] == i){ second_pos = positions[first_num][1]; } else{ second_pos = positions[first_num][0]; } if(second_pos != i+1){ int current_num_at_i1 = arr[i+1]; swap(arr[i +1], arr[second_pos]); swaps.emplace_back(i +2, second_pos +1); int swapped_num = arr[i+1]; int current_num_at_second_pos = arr[second_pos]; for(auto &pos : positions[swapped_num]){ if(pos == second_pos){ pos = i+1; break; } } for(auto &pos : positions[current_num_at_second_pos]){ if(pos == i+1){ pos = second_pos; break; } } } } cout << swaps.size() << "\n"; for(auto &[x, y]: swaps){ cout << x << " " << y << "\n"; } }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
5 3 2 4 5 1 3 2 1 4 5 |
correct output |
---|
3 2 6 4 9 6 8 |
user output |
---|
3 2 6 4 9 6 8 |
Test 2
Verdict: ACCEPTED
input |
---|
5 3 2 4 5 1 3 2 1 4 5 |
correct output |
---|
3 2 6 4 9 6 8 |
user output |
---|
3 2 6 4 9 6 8 |
Test 3
Verdict: ACCEPTED
input |
---|
10 3 6 6 8 8 9 9 1 4 5 2 4 10 2 1... |
correct output |
---|
9 2 17 4 17 6 17 8 17 ... |
user output |
---|
9 2 17 4 17 6 17 8 17 ... |
Test 4
Verdict: ACCEPTED
input |
---|
10 3 6 6 8 8 9 9 1 4 5 2 4 10 2 1... |
correct output |
---|
9 2 17 4 17 6 17 8 17 ... |
user output |
---|
9 2 17 4 17 6 17 8 17 ... |
Test 5
Verdict: ACCEPTED
input |
---|
50 47 26 6 35 13 18 9 19 14 50 34... |
correct output |
---|
48 2 87 4 78 6 71 8 55 ... |
user output |
---|
48 2 87 4 78 6 71 8 55 ... Truncated |
Test 6
Verdict: ACCEPTED
input |
---|
50 47 26 6 35 13 18 9 19 14 50 34... |
correct output |
---|
48 2 87 4 78 6 71 8 55 ... |
user output |
---|
48 2 87 4 78 6 71 8 55 ... Truncated |
Test 7
Verdict: ACCEPTED
input |
---|
100 56 26 6 35 60 72 9 55 83 51 58... |
correct output |
---|
97 2 77 4 108 6 141 8 55 ... |
user output |
---|
97 2 77 4 108 6 141 8 55 ... Truncated |
Test 8
Verdict: ACCEPTED
input |
---|
100 56 26 6 35 60 72 9 55 83 51 58... |
correct output |
---|
97 2 77 4 108 6 141 8 55 ... |
user output |
---|
97 2 77 4 108 6 141 8 55 ... Truncated |
Test 9
Verdict: ACCEPTED
input |
---|
500 56 146 351 35 281 235 354 449 ... |
correct output |
---|
497 2 758 4 820 6 125 8 243 ... |
user output |
---|
497 2 758 4 820 6 125 8 243 ... Truncated |
Test 10
Verdict: ACCEPTED
input |
---|
500 56 146 351 35 281 235 354 449 ... |
correct output |
---|
497 2 758 4 820 6 125 8 243 ... |
user output |
---|
497 2 758 4 820 6 125 8 243 ... Truncated |
Test 11
Verdict: ACCEPTED
input |
---|
1000 603 596 351 885 530 235 354 56... |
correct output |
---|
993 2 256 4 1534 6 816 8 1057 ... |
user output |
---|
993 2 256 4 1534 6 816 8 1057 ... Truncated |
Test 12
Verdict: ACCEPTED
input |
---|
1000 603 596 351 885 530 235 354 56... |
correct output |
---|
993 2 256 4 1534 6 816 8 1057 ... |
user output |
---|
993 2 256 4 1534 6 816 8 1057 ... Truncated |
Test 13
Verdict: ACCEPTED
input |
---|
5000 1594 596 1797 3776 1201 235 35... |
correct output |
---|
4993 2 1548 4 9062 6 6397 8 8296 ... |
user output |
---|
4993 2 1548 4 9062 6 6397 8 8296 ... Truncated |
Test 14
Verdict: ACCEPTED
input |
---|
5000 1594 596 1797 3776 1201 235 35... |
correct output |
---|
4993 2 1548 4 9062 6 6397 8 8296 ... |
user output |
---|
4993 2 1548 4 9062 6 6397 8 8296 ... Truncated |