QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#575202 | #9104. Zayin and Forest | leafmaple# | WA | 25ms | 8140kb | C++20 | 1.4kb | 2024-09-19 11:15:11 | 2024-09-19 11:15:12 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define lowbit(x) (x&(-x))
int len ;
int tr[6300000+10];
#define endl '\n'
void insert(int pos,int val)
{
while(pos <= len)
{
tr[pos] += val;
pos += lowbit(pos);
}
}
int query(int x)
{
int res = 0;
while(x)
{
res += tr[x];
x -= lowbit(x);
}
return res;
}
int query(int l,int r)
{
return query(r) - query(l-1);
}
const int N = 1e5+10;
struct query{
int op,x,v,l,r;
}Q[N];
signed main (){
std::ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n,m;
cin>>n>>m;
vector<int> v;
for(int i=1;i<=m;i++)
{
cin>>Q[i].op;
if(Q[i].op == 1)
{
cin>>Q[i].x>>Q[i].v;
int x = Q[i].x;
while(x <= n)
{
v.push_back(x);
x += lowbit(x);
}
}
else
{
cin>>Q[i].l>>Q[i].r;
}
}
v.push_back(0);
sort(v.begin(),v.end());
v.erase(unique(v.begin(),v.end()),v.end());
len = v.size() - 1;
for(int i=1;i<=m;i++)
{
if(Q[i].op == 1)
{
int x = Q[i].x;
while(x <= n)
{
int y = lower_bound(v.begin(),v.end(),x) - v.begin();
insert(y,Q[i].v);
x += lowbit(x);
}
}
else
{
int l =lower_bound(v.begin(),v.end(),Q[i].l) - v.begin();
int r = lower_bound(v.begin(),v.end(),Q[i].r) - v.begin();
cout<<query(l,r)<<endl;
}
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 25ms
memory: 8140kb
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 111813205414 69703816663 211506104092 104120007714 34403738515 ...
result:
wrong answer 23rd lines differ - expected: '111664599432', found: '111813205414'