QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#504896#9104. Zayin and Forestblhxzjr#RE 0ms0kbC++203.2kb2024-08-04 17:04:382024-08-04 17:04:38

Judging History

你现在查看的是最新测评结果

  • [2024-08-04 17:04:38]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-08-04 17:04:38]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define rep(i, a, n) for (int i = a; i <= n; i++)
#define pb push_back
#define fi first
#define se second
#define sz(x) x.size()
#define lowbit(x) (x & (-x))
#define all(x) x.begin(), x.end()
#define inf 0x3f3f3f3f3f3f3f3f
#define int long long
using ll = long long;
using PII = pair<int, int>;
constexpr int N = 8e6 + 10;

using LD = long double;
mt19937_64 rnd(chrono::duration_cast<chrono::nanoseconds>(chrono::system_clock::now().time_since_epoch()).count());

int n,m,k,_;
int c[N];
ll query(int x){
	ll s=0;
	for(;x;x-=lowbit(x)) s+=c[x];
	return s;
}
ll query(int l,int r){
    return (query(r)-query(l-1));
}
inline void add(int x,ll s){
	for(;x<=n;x+=lowbit(x)) c[x]+=s;
}
vector<int>d;
int rk(int x){
	return lower_bound(d.begin(),d.begin()+m,x)-d.begin()+1;
}
void solve(){
	cin>>n>>m;
	int op,a,b;
	vector<array<int,3>>p;
	rep(i,1,m){
		cin>>op>>a>>b;
		p.pb({op,a,b});
		if(op==1){
			for(int j=a;j<=n;j+=lowbit(j)) d.pb(j);
		}
	}
	sort(all(d));
	m=unique(all(d))-d.begin();
	for(auto [op,a,b]:p){
		if(op==1){
			for(int j=a;j<=n;j+=lowbit(j))
				add(rk(j),b);
		}
		else{
			int l,r;
			l=lower_bound(d.begin(),d.begin()+m,a)-d.begin()+1;
			r=upper_bound(d.begin(),d.begin()+m,b)-d.begin();
			cout<<query(l,r)<<endl;
		}
	}
}




// int a[100],b[100];
// void solve(){
// 	vector<int>aa,bb;
// 	map<int,int>ap,bp;
// 	rep(i,0,9){
// 		cin>>a[i];
// 		if(a[i]==1){
// 			aa.pb(i);
// 			ap[i]=aa.size()-1;
// 		}
// 	}
// 	rep(i,0,9){
// 		cin>>b[i];
// 		if(b[i]==1){
// 			bb.pb(i);
// 			bp[i]=bb.size()-1;
// 		}
// 	}
// 	cin>>n;
// 	if(n==0){
// 		cout<<bb[0];
// 		return;
// 	}
// 	if(bb.size()==1||aa.size()==1){
// 		if(aa.size()==1&&bb.size()!=1){
// 			int ans=0;
// 			while(n){
// 				ans++;
// 				n/=10;
// 			}
// 			int q=bb.size();
// 			vector<int>res;
// 			ans--;
// 			while(ans){
// 				res.pb(ans%q);
// 				ans/=q;
// 			}
// 			reverse(all(res));
// 			for(auto i:res){
// 				cout<<bb[i];
// 			}
// 			return;
// 		}
// 		else if(bb.size()==1&&aa.size()!=1){
// 			vector<int>t;
// 			while(n){
// 				t.pb(ap[n%10]);
// 				n/=10;
// 			}
// 			int id=1,ans=0,p=aa.size(),q=bb.size();
// 				for(auto i:t){
// 				ans+=i*id;
// 				id*=p;
// 			}
// 			rep(i,1,ans) cout<<bb[0]; 
// 			return;
// 		}
// 		else{
// 			int ans=0;
// 			while(n){
// 				ans++;
// 				n/=10;
// 			}
// 			vector<int>res;
// 			while(ans){
// 				ans--;
// 				res.pb(0);
// 			}
// 			for(auto i:res){
// 				cout<<bb[i];
// 			}
// 			return;
// 		}
// 	}
// 	vector<int>t;
// 	while(n){
// 		t.pb(ap[n%10]);
// 		n/=10;
// 	}
// 	int id=1,ans=0,p=aa.size(),q=bb.size();
// 	for(auto i:t){
// 		ans+=i*id;
// 		id*=p;
// 	}
// 	vector<int>res;
// 	while(ans){
// 		res.pb(ans%q);
// 		ans/=q;
// 	}
// 	reverse(all(res));
// 	for(auto i:res){
// 		cout<<bb[i];
// 	}
// }


// void solve(){
// 	cin>>n>>k;
// 	string s,t;
// }
signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    _ = 1;
    //cin >> _;
    while (_--)
    {
        solve();
        if (_)
            cout << endl;
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Runtime Error

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:


result: