My code gives runtime error for some testcases of this Problem.
My Solution
But when I add integer 0, n times in the multiset at the beginning, my code gets accepted. Why?
Added Part
| # | User | Rating |
|---|---|---|
| 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 |
| # | User | Contrib. |
|---|---|---|
| 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 |
My code gives runtime error for some testcases of this Problem.
void solve() {
int n, x, q;
cin >> n >> x >> q;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
a[i] -= i;
}
map<int, int> f;
for (int i = 0; i < x; i++) {
f[a[i]]++;
}
multiset<int, greater<int>> mt;
for (auto it : f) {
mt.insert(it.second);
}
vector<int> ans(n - x + 1);
ans[0] = x - *mt.begin();
for (int i = x; i < n; i++) {
int cur = i;
int beg = i - x;
mt.erase(mt.find(f[a[beg]]));
f[a[beg]]--;
mt.insert(f[a[beg]]);
mt.erase(mt.find(f[a[cur]]));
f[a[cur]]++;
mt.insert(f[a[cur]]);
ans[beg] = x - *mt.begin();
}
while (q--) {
int l, r;
cin >> l >> r;
cout << ans[l - 1] << "\n";
}
}
But when I add integer 0, n times in the multiset at the beginning, my code gets accepted. Why?
multiset<int, greater<int>> mt;
for(int i = 1; i <= n; i++) {
mt.insert(0);
}
| Name |
|---|



check if element exists before deleting