question link : https://mirror.codeforces.com/problemset/problem/1256/B solution link : https://ideone.com/JInG1y What is the problem in this anyone?
| № | Пользователь | Рейтинг |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| Страны | Города | Организации | Всё → |
| № | Пользователь | Вклад |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 4 | Proof_by_QED | 146 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
question link : https://mirror.codeforces.com/problemset/problem/1256/B solution link : https://ideone.com/JInG1y What is the problem in this anyone?
| Название |
|---|



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)