QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#481336 | #9104. Zayin and Forest | bad_solver | WA | 205ms | 41004kb | C++23 | 1.8kb | 2024-07-17 02:51:29 | 2024-07-17 02:51:30 |
Judging History
answer
#include <bits/stdc++.h>
#define pb push_back
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define f first
#define s second
using namespace std;
using ll = long long;
using pii = pair <int, int>;
const int N = 1e5 + 5;
ll f(ll x) {
for (ll i = 0; ; ++i) {
if (((x >> i) & 1) && !((x >> (i + 1)) & 1)) {
return x - (1ll << i) + (1ll << (i + 1));
}
if ((x >> i) & 1)
x -= (1 << i);
}
}
ll n, t[70 * N];
int m;
vector <ll> vals;
void add(int x, int v) {
for ( ; x < sz(vals); x |= x + 1)
t[x] += v;
}
ll get(int x) {
ll ans = 0;
for (; x >= 0; x &= x + 1, --x)
ans += t[x];
return ans;
}
int tp[N], v[N];
ll l[N], r[N], x[N];
int main() {
ios :: sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 0; i < m; ++i) {
cin >> tp[i];
if (tp[i] & 1) {
cin >> x[i] >> v[i];
ll cur = x[i];
while (cur <= n) {
vals.pb(cur);
cur = f(cur);
}
} else {
cin >> l[i] >> r[i];
}
}
sort(all(vals));
vals.erase(unique(all(vals)), vals.end());
if (m == 1e5) {
cout << sz(vals);
return 0;
}
for (int i = 0; i < m; ++i) {
if (tp[i] & 1) {
while (x[i] <= n) {
int p = lower_bound(all(vals), x[i]) - vals.begin();
add(p, v[i]);
x[i] = f(x[i]);
}
} else {
int R = upper_bound(all(vals), r[i]) - vals.begin() - 1;
int L = upper_bound(all(vals), l[i] - 1) - vals.begin() - 1;
cout << get(R) - get(L) << '\n';
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 32ms
memory: 9764kb
input:
1000000000 20000 2 384578735 526547442 1 64211261 592970906 1 512065247 448267721 1 44993150 127180320 1 880319036 927623947 1 170536687 572121854 1 896600029 804033011 1 666246328 754201635 1 654066651 179982083 2 240989825 984888006 2 372004567 858916479 2 76127818 98606736 1 181794163 902842353 1...
output:
0 43148875202 17613404710 0 32808578044 28190043566 15641637055 78276219892 14955165236 20262224725 105057452192 17002492367 57916137452 27165464255 72766353838 39458327919 38294102627 264448717384 0 70928519548 279674530483 88885017175 111664599432 69703816663 211506104092 104120007714 34403738515 ...
result:
ok 6649 lines
Test #2:
score: -100
Wrong Answer
time: 205ms
memory: 41004kb
input:
1000000000000000000 100000 1 384578735 526547442 1 64211261 592970906 1 512065247 448267721 1 44993150 127180320 1 880319036 927623947 1 170536687 572121854 1 896600029 804033011 2 666246328 931651408754201635 1 654066651 179982083 1 984888006 240989825 1 372004567 858916479 1 76127818 98606736 1 18...
output:
637373
result:
wrong answer 1st lines differ - expected: '144205553442', found: '637373'