when run my code in my codeblocks ide,it gives perfect ans.. but when I submit it it gives 'uninitiaized value usage' and wrong answere..
my submition:75769281
how can i solve this problem??
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | Radewoosh | 3415 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | XVIII | 3345 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
when run my code in my codeblocks ide,it gives perfect ans.. but when I submit it it gives 'uninitiaized value usage' and wrong answere..
my submition:75769281
how can i solve this problem??
| Name |
|---|



Here,I fixed it. https://mirror.codeforces.com/contest/1005/submission/75775687
You were doing a[k+1] so the upper bound should be k<n-1 not k<n(a[n] wasn't initialized)
for(int k=0;k<n;k++)when k = n-1, it's trying to access the data of a[n] insideif(a[k] >= a[k+1]). a[n] will show a garbage value unless you initialize it.