結果
問題 | No.511 落ちゲー 〜手作業のぬくもり〜 |
ユーザー | tossy |
提出日時 | 2017-05-07 13:18:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,596 bytes |
コンパイル時間 | 2,264 ms |
コンパイル使用メモリ | 182,956 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-14 14:41:01 |
合計ジャッジ時間 | 8,255 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,576 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define rep(i,n) repl(i,0,n) #define mp(a,b) make_pair((a),(b)) #define pb(a) push_back((a)) #define all(x) (x).begin(),(x).end() #define uniq(x) sort(all(x)),(x).erase(unique(all(x)),end(x)) #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} #define INF 123456789123456789LL template<typename T> class SegTree { public: int n; vector<T> segMax, segAdd, segIdx; void _add(int a, int b, T x, int k, int l, int r){ if(r<=a || b<=l) return; if(a<=l && r<=b){segAdd[k]+=x; return;} int cl = k*2+1, cr = k*2+2; _add(a,b,x,cl,l,(l+r)/2); _add(a,b,x,cr,(l+r)/2,r); T vl = segMax[cl]+segAdd[cl]; T vr = segMax[cr]+segAdd[cr]; if(vl > vr){ segMax[k] = vl; segIdx[k] = segIdx[cl]; } else { segMax[k] = vr; segIdx[k] = segIdx[cr]; } } pair<T, int> _max(int a, int b, int k, int l, int r){ // <val, idx> (tree上でのidx) if(r<=a || b<=l) return mp(-INF, -1); if(a<=l && r<=b) return mp(segMax[k]+segAdd[k], segIdx[k]); pair<T,int> vl = _max(a,b,k*2+1,l,(l+r)/2); pair<T,int> vr = _max(a,b,k*2+2,(l+r)/2,r); if(vl.fi > vr.fi) return mp(vl.fi+segAdd[k], vl.se); else return mp(vr.fi+segAdd[k], vr.se); } SegTree(int n_){ n=1; while(n<n_) n*=2; segMax.resize(2*n-1); fill(all(segMax), 0); segAdd.resize(2*n-1); fill(all(segAdd), 0); segIdx.resize(2*n-1); repl(i,n-1,2*n-1) segIdx[i] = i; for(int i=n-2; i>=0; i--) segIdx[i] = 2*i+1; } inline void add(int a, int b, T x){ _add(a,b,x,0,0,n);} //add x in [a,b) inline pair<T,int> getMax(int a,int b){return _max(a,b,0,0,n);} }; int main(){ long n,w,h; cin>>n>>w>>h; SegTree<long> st(w); vector<long> a(n),b(n),x(n); rep(i,n) cin>>a[i]>>b[i]>>x[i]; rep(i,n) x[i]--; int p[2] = {0,0}; rep(i,n){ st.add(x[i], x[i]+a[i], b[i]); while(true){ auto val = st.getMax(x[i],x[i]+a[i]); // dbg(mp(val.fi, val.se - (st.n-1))); if(val.fi<h) break; p[i%2]++; int idx = val.se - (st.n-1); st.add(idx, idx+1, -INF); } // dbg(mp(p[0],p[1])); if(p[0]+p[1]>=w) break; } if(p[0]>p[1]) cout << "A" << endl; else if(p[0]==p[1]) cout << "DRAW" << endl; else cout << "B" << endl; return 0; }