結果

問題 No.2065 Sum of Min
ユーザー okkuukenkenokkuukenken
提出日時 2022-09-02 21:59:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 1,545 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 163,272 KB
実行使用メモリ 56,344 KB
最終ジャッジ日時 2024-11-16 03:24:45
合計ジャッジ時間 13,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 371 ms
56,120 KB
testcase_05 AC 358 ms
56,040 KB
testcase_06 AC 483 ms
56,120 KB
testcase_07 AC 378 ms
56,284 KB
testcase_08 AC 553 ms
56,216 KB
testcase_09 AC 416 ms
56,180 KB
testcase_10 AC 430 ms
56,296 KB
testcase_11 AC 428 ms
56,056 KB
testcase_12 AC 649 ms
56,120 KB
testcase_13 AC 662 ms
56,184 KB
testcase_14 AC 634 ms
56,344 KB
testcase_15 AC 651 ms
56,280 KB
testcase_16 AC 633 ms
56,192 KB
testcase_17 AC 634 ms
56,336 KB
testcase_18 AC 636 ms
56,328 KB
testcase_19 AC 662 ms
56,044 KB
testcase_20 AC 662 ms
56,308 KB
testcase_21 AC 657 ms
56,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
#include<string>
#include<iomanip>
#include<numeric>
#include<queue>
#include<deque>
#include<stack>
#include<set>
#include<map>
#include<random>
#include<bitset>
#include<cassert>
#include<complex>
#include<fstream>
#include<cstdlib>
#include<functional>
#include<array>
using namespace std;
typedef long long ll;
const int mod=998244353;
class RMQ{
	int n;
	vector<int>vec;
	vector<vector<int>>dat;
	vector<vector<ll>>sum;
public:
	void init(int k,int l,int r){
		if(r-l==1)
			dat[k].push_back(vec[k-(n-1)]);
		else{
			init(k*2+1,l,(l+r)/2);
			init(k*2+2,(l+r)/2,r);
			merge(dat[k*2+1].begin(),dat[k*2+1].end(),dat[k*2+2].begin(),dat[k*2+2].end(),back_inserter(dat[k]));
		}
		sum[k].resize(dat[k].size()+1);
		for(int i=0;i<dat[k].size();i++)
			sum[k][i+1]=sum[k][i]+dat[k][i];
	}
	RMQ(vector<int>a):n(1),vec(a){
		while(n<a.size())
			n*=2;
		vec.resize(n);
		dat.resize(2*n-1);
		sum.resize(2*n-1);
		init(0,0,n);
	}
	ll query(int a,int b,int x,int k=0,int l=0,int r=-1){
		if(r==-1)
			r=n;
		if(r<=a||b<=l)
			return 0;
		if(a<=l&&r<=b){
			int itr=lower_bound(dat[k].begin(),dat[k].end(),x)-dat[k].begin();
			return sum[k][itr]+ll(dat[k].size()-itr)*x;
		}
		ll vl=query(a,b,x,k*2+1,l,(l+r)/2);
		ll vr=query(a,b,x,k*2+2,(l+r)/2,r);
		return vl+vr;
	}
};
int main(){
	static int n,q,a[100000],l,r,x;
	cin>>n>>q;
	for(int i=0;i<n;i++)
		cin>>a[i];
	RMQ seg(vector<int>(a,a+n));
	while(cin>>l>>r>>x)
		cout<<seg.query(--l,r,x)<<endl;
}
0