We definitely can't say Oh no, Not again! but there no contest in next 10 days. This is 2nd time in 2021 :(
# | User | Rating |
---|---|---|
1 | jiangly | 3977 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3483 |
8 | hos.lyric | 3381 |
9 | gamegame | 3374 |
10 | heuristica | 3358 |
# | User | Contrib. |
---|---|---|
1 | cry | 170 |
2 | -is-this-fft- | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 160 |
5 | djm03178 | 157 |
5 | Dominater069 | 157 |
7 | adamant | 154 |
8 | luogu_official | 152 |
8 | awoo | 152 |
10 | TheScrasse | 147 |
We definitely can't say Oh no, Not again! but there no contest in next 10 days. This is 2nd time in 2021 :(
Hi codeforces! I was deleting the element from ordered map but when i delete the last element from map then i got the RE! why? :(
#include<bits/stdc++.h>
using namespace std;
void solve(){
int n;
cin>>n;
map<int,int>a;
for(int i=1;i<=n;i++){
int x; cin>>x;
a[i]=x;
}
map<int,int>::iterator it=a.begin();
a.erase(it);
// a.erase(it);
// if i uncomment the upper line then i got RE because iam deleting the last element :(
/* input
2
1 2
iam considering that my ordered map have only 2 elements.
*/
}
int main(){
solve();
}
Name |
---|