結果
問題 | No.2333 Slime Structure |
ユーザー | m_99 |
提出日時 | 2023-05-28 15:32:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,186 bytes |
コンパイル時間 | 4,499 ms |
コンパイル使用メモリ | 234,616 KB |
実行使用メモリ | 26,132 KB |
最終ジャッジ日時 | 2024-06-08 07:58:12 |
合計ジャッジ時間 | 13,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 206 ms
26,132 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
#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; //swap(a,b); 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<int> ts(1,0); vector<int> a(N),b(N); int 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; }