結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー 沙耶花沙耶花
提出日時 2022-10-14 21:54:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,598 ms / 6,000 ms
コード長 1,758 bytes
コンパイル時間 5,106 ms
コンパイル使用メモリ 278,080 KB
実行使用メモリ 177,640 KB
最終ジャッジ日時 2024-06-26 13:51:10
合計ジャッジ時間 80,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 1,064 ms
97,436 KB
testcase_04 AC 1,776 ms
130,976 KB
testcase_05 AC 977 ms
87,384 KB
testcase_06 AC 1,528 ms
121,564 KB
testcase_07 AC 1,777 ms
140,940 KB
testcase_08 AC 1,699 ms
126,160 KB
testcase_09 AC 872 ms
77,716 KB
testcase_10 AC 793 ms
68,988 KB
testcase_11 AC 1,270 ms
96,852 KB
testcase_12 AC 1,335 ms
97,644 KB
testcase_13 AC 857 ms
73,700 KB
testcase_14 AC 857 ms
57,264 KB
testcase_15 AC 2,115 ms
151,100 KB
testcase_16 AC 1,610 ms
133,808 KB
testcase_17 AC 610 ms
47,700 KB
testcase_18 AC 2,598 ms
177,640 KB
testcase_19 AC 2,443 ms
177,508 KB
testcase_20 AC 2,409 ms
177,384 KB
testcase_21 AC 2,417 ms
177,508 KB
testcase_22 AC 2,395 ms
177,380 KB
testcase_23 AC 2,396 ms
177,380 KB
testcase_24 AC 2,389 ms
177,504 KB
testcase_25 AC 2,413 ms
177,504 KB
testcase_26 AC 2,418 ms
177,504 KB
testcase_27 AC 2,443 ms
177,504 KB
testcase_28 AC 2,415 ms
177,640 KB
testcase_29 AC 2,425 ms
177,636 KB
testcase_30 AC 2,430 ms
177,508 KB
testcase_31 AC 2,451 ms
177,636 KB
testcase_32 AC 2,496 ms
177,508 KB
testcase_33 AC 2,374 ms
177,392 KB
testcase_34 AC 2,351 ms
177,636 KB
testcase_35 AC 2,337 ms
177,456 KB
testcase_36 AC 2,324 ms
177,504 KB
testcase_37 AC 2,337 ms
177,380 KB
testcase_38 AC 667 ms
61,948 KB
testcase_39 AC 838 ms
59,196 KB
testcase_40 AC 662 ms
22,724 KB
testcase_41 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 2000000000000000001
using P = pair<long long,long long>;

P op(P a,P b){
	auto ret = make_pair(0,0);
	ret.first = a.first + b.first;
	ret.second = a.second + b.second;
	return ret;
}

P e(){
	return make_pair(0LL,0LL);
}

P mapping(P a,long long b){
	a.first += b * a.second;
	return a;
}

long long composition(long long a,long long b){
	return a+b;
}

long long id(){
	return 0;
}

int main(){
	
	int n;
	cin>>n;
	
	map<long long,vector<int>> Add,Del;// Add(200005),Del(200005);
	fenwick_tree<long long> S(n+1),C(n+1);
	vector<long long> a(n),t(n);
	vector<long long> ts;
	rep(i,n){
	
		cin>>a[i]>>t[i];
		S.add(i,a[i]);
		
		Add[t[i]].push_back(i);
		
		
		Del[t[i]+a[i]].push_back(i);
		ts.push_back(t[i]);
		ts.push_back(t[i]+a[i]);
	}
	int q;
	cin>>q;
	vector<int> d(q),l(q),r(q);
	//vector<vector<int>> Qs(200005);
	map<long long,vector<int>> Qs;
	
	rep(i,q){
		cin>>d[i]>>l[i]>>r[i];
		l[i]--;
		Qs[d[i]].push_back(i);
		ts.push_back(d[i]);
	}
	sort(ts.begin(),ts.end());
	ts.erase(unique(ts.begin(),ts.end()),ts.end());
	vector<long long> ans(q);
	
	rep(i,ts.size()){
		rep(j,Add[ts[i]].size()){
			int ii = Add[ts[i]][j];
			S.add(ii,ts[i]-1);
			C.add(ii,1);
		}
		rep(j,Del[ts[i]].size()){
			int ii = Del[ts[i]][j];
			S.add(ii,-S.sum(ii,ii+1));
			C.add(ii,-C.sum(ii,ii+1));
		}
		rep(j,Qs[ts[i]].size()){
			int ii = Qs[ts[i]][j];
			long long tt = 0;
			tt += S.sum(l[ii],r[ii]);
			tt -= C.sum(l[ii],r[ii]) * (long long)ts[i];
			ans[ii] = tt;
		}
		
		
	}
	
	rep(i,q){
		cout<<ans[i]<<endl;
	}
	
	
	return 0;
}
0