結果
問題 | No.2223 Merged Med |
ユーザー | ぷら |
提出日時 | 2023-02-17 22:33:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,726 bytes |
コンパイル時間 | 2,606 ms |
コンパイル使用メモリ | 217,388 KB |
実行使用メモリ | 9,144 KB |
最終ジャッジ日時 | 2024-07-19 13:43:28 |
合計ジャッジ時間 | 26,974 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | AC | 657 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 469 ms
7,012 KB |
testcase_16 | AC | 1,072 ms
8,528 KB |
testcase_17 | AC | 325 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1,407 ms
9,016 KB |
testcase_21 | AC | 1,325 ms
8,892 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1,380 ms
9,016 KB |
testcase_24 | AC | 1,376 ms
9,144 KB |
testcase_25 | AC | 1,366 ms
8,888 KB |
testcase_26 | AC | 1,406 ms
9,016 KB |
testcase_27 | AC | 1,427 ms
9,016 KB |
testcase_28 | AC | 1,409 ms
9,016 KB |
testcase_29 | AC | 1,416 ms
8,888 KB |
testcase_30 | WA | - |
testcase_31 | AC | 612 ms
8,908 KB |
testcase_32 | WA | - |
testcase_33 | AC | 1,159 ms
8,888 KB |
testcase_34 | WA | - |
testcase_35 | AC | 977 ms
8,888 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int inf = 1001001001; array<int,4> mrg(array<int,4>&a,array<int,4>&b) { array<int,4>ar = {0,0,0,0}; ar[0] = max(a[0],a[2]+b[0]); ar[1] = max(b[1],b[2]+a[1]); ar[2] = a[2]+b[2]; ar[3] = max({a[3],b[3],a[1]+b[0]}); return ar; } struct SegmentTree { int n; vector<array<int,4>> dat; SegmentTree() {} SegmentTree(int N) { n = 1; while(n < N) { n *= 2; } dat.resize(2*n-1); for(int i = n-1; i < 2*n-1; i++) { dat[i] = {1,1,1,1}; } for(int i = n-2; i >= 0; i--) { dat[i] = mrg(dat[i*2+1],dat[i*2+2]); } } void update(int x) { x += n-1; dat[x] = {0,0,-1,0}; while(x > 0) { x = (x-1)/2; dat[x] = mrg(dat[2*x+1],dat[2*x+2]); } } array<int,4> query(int a, int b, int k, int l, int r) { if(r <= a || b <= l) return {0,0,0,0}; if(a <= l && r <= b) return dat[k]; array<int,4> vl = query(a, b, 2*k+1, l, (l+r)/2); array<int,4> vr = query(a, b, 2*k+2, (l+r)/2, r); return mrg(vl, vr); } array<int,4> query(int a,int b) {//[a,b) return query(a,b,0,0,n); } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,Q; cin >> N >> Q; vector<int>A(N); for(int i = 0; i < N; i++) { cin >> A[i]; } vector<int>L(Q),R(Q); for(int i = 0; i < Q; i++) { cin >> L[i] >> R[i]; L[i]--; R[i]--; } vector<int>l(Q,0),r(Q,inf); while(true) { vector<array<int,3>>query; for(int i = 0; i < Q; i++) { if(l[i]+1 < r[i]) { int mid = (l[i]+r[i])/2; query.push_back({mid,1,i}); } } if(query.empty()) break; for(int i = 0; i < N; i++) { query.push_back({A[i],0,i}); } sort(query.begin(),query.end()); SegmentTree Seg(N); for(int i = 0; i < query.size(); i++) { if(query[i][1] == 0) { Seg.update(query[i][2]); } else { int id = query[i][2]; array<int,4> now = Seg.query(L[id],R[id]+1); if(query[i][0] == 7) { cout << now[0] << " " << now[1] << " " << now[2] << " " << now[3] << endl; } if(-now[2]+max(0,now[3]-1) >= 1) { r[id] = query[i][0]; } else { l[id] = query[i][0]; } } } } for(int i = 0; i < Q; i++) { cout << r[i] << "\n"; } }