QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#504900#9104. Zayin and Forestblhxzjr#AC ✓367ms48716kbC++203.2kb2024-08-04 17:06:392024-08-04 17:06:41

Judging History

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

  • [2024-08-04 17:06:41]
  • 评测
  • 测评结果:AC
  • 用时:367ms
  • 内存:48716kb
  • [2024-08-04 17:06:39]
  • 提交

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 = 1e7 + 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<=m;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;
}

详细

Test #1:

score: 100
Accepted
time: 26ms
memory: 6952kb

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: 308ms
memory: 46424kb

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: 367ms
memory: 48716kb

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