question link : https://codeforces.me/problemset/problem/1256/B solution link : https://ideone.com/JInG1y What is the problem in this anyone?
# | User | Rating |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 155 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
10 | nor | 152 |
question link : https://codeforces.me/problemset/problem/1256/B solution link : https://ideone.com/JInG1y What is the problem in this anyone?
Name |
---|
could you elaborate on how your code is supposed to work ??
start from 1 if in correct position continue otherwise found its position and while its not in its correct position and swap is possible i keep on swapping.
more specifically what is the map <ll, ll> h doing ??
nevermind this
consider the test case: 1 8 8 5 6 7 1 3 2 4
you code gives: 1 8 5 6 2 7 4 3
ans 1 8 5 6 2 7 3 4
Your code is swapping them before assigning right cnt,
swap(a[e],a[e-1]);
cnt[a[e]]=e-1;
cnt[a[e-1]]=e;
First update then swapcnt[a[e]]=e-1;cnt[a[e-1]]=e;swap(a[e],a[e-1]);
then second thing if say a[e] is 4 and a[e-1] is 3, then you should not swap... eg take this case: n=8, arr=[8 5 6 7 1 3 2 4] after some steps it becomes 1 8 5 6 2 7 3 4, we cannot swap 3 with 7 as that operation is already used, then your code is swapping 4 with 3, hence it gives 1 8 5 6 2 7 4 3. add a conditionwhile(e>i && a[e-1]>a[e] && h.count(e-1)==0)