Has anybody noticed that submission 222222222 is coming? I know it's not as news-breaking as 200000000, but nonetheless, a neat number! Let's hope the 2x9th submission is accepted 😎
| # | 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 |
Has anybody noticed that submission 222222222 is coming? I know it's not as news-breaking as 200000000, but nonetheless, a neat number! Let's hope the 2x9th submission is accepted 😎
If you want a variable to be the negative of itself, do you use n = -n, n *= -1, or other methods? If so, suggest some methods down below.
I am trying to solve 165C using binary search, but it is getting TLE. Can anyone help?
Here's my code: 208389930
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll n, k;
ll pre[100005];
string s;
ll bs1(ll lo){
ll l = lo, r = n, mid;
while (l <= r){
mid = (l + r) / 2;
if (pre[mid] - pre[lo-1] <= k){
l = mid + 1;
} else {
r = mid - 1;
}
}
return r;
}
ll bs2(ll lo){
ll l = lo, r = n, mid;
while (l <= r){
mid = (l + r) / 2;
if (pre[mid] - pre[lo-1] >= k){
r = mid - 1;
} else {
l = mid + 1;
}
}
return l;
}
signed main(){
ll i, res;
cin >> k >> s;
n = s.size();
s = " " + s;
pre[0] = 0;
for (i = 1; i <= n; i++){
pre[i] = pre[i-1] + s[i] - '0';
}
res = 0;
for (i = 1; i <= n; i++){
res += bs1(i) - bs2(i) + 1;
}
cout << res;
}
Has anyone realized that Codeforces is reaching 200M submissions in the problem set? It will be a big day when this happens! Good luck getting the 200Mth submission! That person will go down in history!
| Name |
|---|


