結果
問題 | No.2223 Merged Med |
ユーザー | ぷら |
提出日時 | 2023-02-17 22:26:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,400 bytes |
コンパイル時間 | 2,509 ms |
コンパイル使用メモリ | 217,924 KB |
実行使用メモリ | 9,020 KB |
最終ジャッジ日時 | 2024-07-19 13:36:42 |
合計ジャッジ時間 | 25,891 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 627 ms
8,888 KB |
testcase_31 | AC | 598 ms
8,892 KB |
testcase_32 | AC | 317 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | AC | 955 ms
9,016 KB |
testcase_35 | AC | 939 ms
8,884 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,{1,1,1,1}); } 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(-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"; } }