結果
問題 | No.1788 Same Set |
ユーザー | ぷら |
提出日時 | 2022-04-05 00:38:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,957 bytes |
コンパイル時間 | 2,944 ms |
コンパイル使用メモリ | 227,896 KB |
実行使用メモリ | 593,044 KB |
最終ジャッジ日時 | 2024-05-04 09:26:15 |
合計ジャッジ時間 | 20,981 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 229 ms
13,320 KB |
testcase_12 | AC | 277 ms
13,024 KB |
testcase_13 | AC | 306 ms
12,876 KB |
testcase_14 | AC | 388 ms
12,732 KB |
testcase_15 | AC | 564 ms
12,796 KB |
testcase_16 | AC | 745 ms
13,456 KB |
testcase_17 | AC | 3,355 ms
374,232 KB |
testcase_18 | WA | - |
testcase_19 | MLE | - |
testcase_20 | AC | 375 ms
12,744 KB |
testcase_21 | AC | 620 ms
12,756 KB |
testcase_22 | AC | 809 ms
13,440 KB |
testcase_23 | AC | 733 ms
13,532 KB |
testcase_24 | AC | 1,132 ms
39,708 KB |
testcase_25 | AC | 1,338 ms
39,636 KB |
testcase_26 | AC | 1,175 ms
39,668 KB |
testcase_27 | AC | 1,071 ms
94,128 KB |
testcase_28 | AC | 1,819 ms
94,128 KB |
testcase_29 | AC | 1,559 ms
94,232 KB |
testcase_30 | AC | 1,066 ms
94,128 KB |
testcase_31 | AC | 1,699 ms
94,076 KB |
testcase_32 | AC | 2,210 ms
179,940 KB |
testcase_33 | AC | 2,264 ms
180,156 KB |
testcase_34 | AC | 2,441 ms
179,524 KB |
testcase_35 | AC | 2,503 ms
190,540 KB |
testcase_36 | AC | 2,498 ms
190,800 KB |
testcase_37 | AC | 2,488 ms
190,684 KB |
testcase_38 | AC | 2,460 ms
191,044 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> struct LazySegmentTree{ int n; vector<pair<int,int>>dat; vector<T>lazy; LazySegmentTree() {}; LazySegmentTree(int N) { n = 1; while(n < N) { n *= 2; } dat.resize(n*2); lazy.resize(n*2,0); for(int i = n*2-1; i >= n; i--) { dat[i].second = 1; } for(int i = n-1; i >= 1; i--) { dat[i].second = dat[i*2].second+dat[i*2+1].second; } } void eval(int k,int l,int r) { if(lazy[k] == 0) return; if(k < n) { lazy[k*2] += lazy[k]; lazy[k*2+1] += lazy[k]; } dat[k].first += lazy[k]; lazy[k] = 0; } void update(int a, int b, T x, int k, int l, int r) { eval(k,l,r); if(a <= l && r <= b) { lazy[k] += x; eval(k,l,r); } else if(a < r && l < b) { update(a, b, x, k*2, l, (l+r)/2); update(a, b, x, k*2+1, (l+r)/2, r); dat[k].first = min(dat[k*2].first,dat[k*2+1].first); if(dat[k*2].first == dat[k*2+1].first) { dat[k].second = dat[k*2].second+dat[k*2+1].second; } else if(dat[k*2].first < dat[k*2+1].first) { dat[k].second = dat[k*2].second; } else { dat[k].second = dat[k*2+1].second; } } } void update(int a, int b, T x) {//[a,b) update(a, b, x, 1, 0, n); } pair<int,int> query_sub(int a, int b, int k, int l, int r) { eval(k,l,r); if (r <= a || b <= l) { return {1001001001,0}; } else if (a <= l && r <= b) { return dat[k]; } else { pair<int,int> vl = query_sub(a, b, k*2, l, (l+r)/2); pair<int,int> vr = query_sub(a, b, k*2+1, (l+r)/2, r); pair<int,int> vs = {min(vl.first,vr.first),0}; if(vl.first == vr.first) { vs.second = vl.second+vr.second; } else if(vl.first < vr.first) { vs.second = vl.second; } else { vs.second = vr.second; } return vs; } } pair<int,int> query(int a, int b) {//[a,b) return query_sub(a, b, 1, 0, n); } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<int>A(N),B(N); for(int i = 0; i < N; i++) { cin >> A[i]; } for(int i = 0; i < N; i++) { cin >> B[i]; } map<int,queue<int>>mp1,mp2; for(int i = 0; i < N; i++) { mp1[A[i]].push(i); mp2[B[i]].push(i); } for(auto i:mp1) mp1[i.first].push(N),mp2[i.first].push(N); for(auto i:mp2) mp1[i.first].push(N),mp2[i.first].push(N); LazySegmentTree<int>Seg(N); for(auto i:mp1) { pair<int,int> p = minmax(i.second.front(),mp2[i.first].front()); Seg.update(p.first,p.second,1); } for(auto i:mp2) { pair<int,int> p = minmax(i.second.front(),mp1[i.first].front()); if(p.second != N) { continue; } Seg.update(p.first,p.second,1); } long long ans = 0; for(int i = 0; i < N; i++) { pair<int,int> a = Seg.query(i,N); if(a.first == 0) { ans += a.second; } a = minmax(mp1[A[i]].front(),mp2[A[i]].front()); Seg.update(a.first,a.second,-1); a = minmax(mp1[B[i]].front(),mp2[B[i]].front()); Seg.update(a.first,a.second,-1); mp1[A[i]].pop(); mp2[B[i]].pop(); a = minmax(mp1[A[i]].front(),mp2[A[i]].front()); Seg.update(a.first,a.second,1); if(A[i] != B[i]) { a = minmax(mp1[B[i]].front(),mp2[B[i]].front()); Seg.update(a.first,a.second,1); } } cout << ans << endl; }