QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#504578 | #9104. Zayin and Forest | ikun# | AC ✓ | 647ms | 61296kb | C++20 | 1.7kb | 2024-08-04 13:56:12 | 2024-08-04 13:56:12 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define int long long
#define all(x) (x).begin(), (x).end()
#define ls id << 1
#define rs id << 1 | 1
const int N = 1e5 * 120;
int tr[N<<2];
void up(int id){
tr[id] = tr[ls] + tr[rs];
}
void add(int id, int l, int r, int x, int v){
if(l == r){
tr[id] += v;
return;
}
int mid = l + r >> 1;
if(x <= mid) add(ls, l, mid, x, v);
else add(rs, mid + 1, r, x, v);
up(id);
}
int query(int id, int l, int r, int ql, int qr) {
if(ql <= l && r <= qr ) return tr[id];
int mid = l + r >> 1;
if(qr <= mid) return query(ls, l, mid, ql, qr);
else if(ql > mid) return query(rs, mid + 1, r, ql, qr);
else return query(ls, l, mid, ql, qr) + query(rs, mid + 1, r, ql, qr);
}
int lowbit(int x){
return x & -x;
}
void solve(){
int n, m;
cin >> n >> m;
vector<int>idx;
vector<array<int,3>>qur(m);
for(int i = 0;i < m;i++){
for(int j = 0;j < 3;j++) cin >> qur[i][j];
if(qur[i][0] == 1){
int x = qur[i][1];
while(x <= n){
idx.push_back(x);
x += lowbit(x);
}
}else{
idx.push_back(qur[i][1]);
idx.push_back(qur[i][2]);
}
}
sort(all(idx));
idx.erase(unique(all(idx)), idx.end());
int mxn = idx.size()+5;
for(auto [op, a, b] : qur) {
if(op == 1){
while(a <= n){
int p = lower_bound(all(idx), a) - idx.begin() + 1;
add(1, 1, mxn, p, b);
a += lowbit(a);
}
}else{
int l = lower_bound(all(idx), a) - idx.begin() + 1;
int r = lower_bound(all(idx), b) - idx.begin() + 1;
cout << query(1, 1, mxn, l, r) << endl;
}
}
}
signed main(){
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
int t = 1;
//cin >> t;
while(t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 35ms
memory: 7588kb
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: 0
Accepted
time: 610ms
memory: 54000kb
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:
144205553442 497561506762 903930740555 878459229726 689906696633 859703313829 735231510045 1177875391120 1461659121798 1612314483744 2027462020547 1991476058156 2381861014705 2033973986301 2117738140401 2946661001323 2187638958334 2593068002437 1854182975909 2262561461341 3038788266419 3070435321746...
result:
ok 12561 lines
Test #3:
score: 0
Accepted
time: 647ms
memory: 61296kb
input:
1000000000000000000 100000 1 395661363384578735 526547442 1 843068846064211261 592970906 1 550209039512065247 448267721 1 79278526044993150 127180320 1 193676380880319036 927623947 1 81194098170536687 572121854 1 223947079896600029 804033011 2 921340893666246328 931651408754201635 1 3605022006540666...
output:
0 152171177084 261154456848 98759395571 132967101279 214003153997 109857765028 569583036989 221377921411 943235254745 1036051470108 1290577544766 795223506189 1251272020902 662604469794 907615793356 1786684858550 488655543368 1495388560030 1818589934911 151873013358 717984689394 2039336496945 378996...
result:
ok 12561 lines