question link : https://codeforces.net/problemset/problem/1256/B solution link : https://ideone.com/JInG1y What is the problem in this anyone?
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
4 | atcoder_official | 158 |
6 | Qingyu | 156 |
7 | djm03178 | 152 |
7 | adamant | 152 |
9 | luogu_official | 151 |
10 | awoo | 147 |
question link : https://codeforces.net/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)