結果

問題 No.2333 Slime Structure
ユーザー m_99m_99
提出日時 2023-05-28 15:34:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,185 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 236,420 KB
実行使用メモリ 26,756 KB
最終ジャッジ日時 2024-06-08 08:01:22
合計ジャッジ時間 14,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 239 ms
26,756 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Data{
	long long suf = -Inf64,pre = -Inf64,all = 0,max = -Inf64;
};

Data op(Data a,Data b){

	if(a.suf==-Inf64)return b;
	if(b.suf==-Inf64)return a;

	a.max = max({a.max,b.max,a.suf,b.suf,a.pre,b.pre,a.suf + b.pre});

	a.pre = max({a.all + b.pre,a.pre});

	a.suf = max({b.suf,a.suf + b.all});

	a.all += b.all;
	a.max = max({a.max,a.pre,a.suf,a.all});

	return a;
}

Data e(){
	return Data();
}

int main(){
	
	int N;
	cin>>N;
	
	vector<long long> ts(1,0);
	vector<int> a(N),b(N);
	long long cur = 0;
	rep(i,N){
		cin>>a[i]>>b[i];
		cur += b[i];
		ts.push_back(cur);
	}
	int Q;
	cin>>Q;
	vector<int> t(Q),x(Q),y(Q);
	rep(i,Q){
		cin>>t[i]>>x[i]>>y[i];
		x[i]--;
		if(t[i]==1){
			ts.push_back(x[i]);
			ts.push_back(x[i]+1);
		}
		else{
			ts.push_back(x[i]);
			ts.push_back(y[i]);
		}
	}
	sort(ts.begin(),ts.end());
	ts.erase(unique(ts.begin(),ts.end()),ts.end());
	cur = 0;
	segtree<Data,op,e> seg(ts.size());
	rep(i,N){
		int l = distance(ts.begin(),lower_bound(ts.begin(),ts.end(),cur));
		
		while(ts[l]!=cur+b[i]){
			long long haba = ts[l+1] - ts[l];
			Data d;
			d.all = (long long)a[i] * haba;
			d.pre = max((long long)a[i],d.all);
			d.suf = max((long long)a[i],d.all);
			d.max = max(d.pre,d.suf);
			seg.set(l,d);
			l++;
		}
		cur += b[i];
	}
	/*cout<<"hoge"<<endl;
	rep(i,ts.size()-1){
		cout<<ts[0]<<','<<ts[i+1]<<','<<seg.prod(0,i+1).pre<<','<<seg.prod(0,i+1).suf<<','<<seg.prod(0,i+1).max<<endl;
		//return 0;
	}
	*/
	
	rep(i,Q){
		if(t[i]==1){
			int l = distance(ts.begin(),lower_bound(ts.begin(),ts.end(),x[i]));
			Data d;
			d.all = y[i] * 1;
			d.pre = max((long long)y[i],d.all);
			d.suf = max((long long)y[i],d.all);
			d.max = max(d.pre,d.suf);
			seg.set(l,d);
		}
		else{
			int l = distance(ts.begin(),lower_bound(ts.begin(),ts.end(),x[i]));
			int r = distance(ts.begin(),lower_bound(ts.begin(),ts.end(),y[i]));
			
			
			Data ans = seg.prod(l,r);
			cout<<ans.max<<endl;
		}
	}
	return 0;
}
0