結果
問題 | No.1768 The frog in the well knows the great ocean. |
ユーザー | se1ka2 |
提出日時 | 2021-11-26 23:38:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,043 bytes |
コンパイル時間 | 841 ms |
コンパイル使用メモリ | 92,740 KB |
実行使用メモリ | 21,256 KB |
最終ジャッジ日時 | 2024-06-29 19:07:14 |
合計ジャッジ時間 | 7,259 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
9,724 KB |
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 | AC | 142 ms
14,396 KB |
testcase_13 | WA | - |
testcase_14 | AC | 136 ms
14,636 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 146 ms
17,120 KB |
testcase_20 | AC | 146 ms
17,180 KB |
testcase_21 | AC | 4 ms
9,740 KB |
testcase_22 | AC | 6 ms
9,672 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 171 ms
21,252 KB |
testcase_27 | AC | 3 ms
10,272 KB |
ソースコード
#include <functional> #include <algorithm> #include <iostream> #include <vector> #include <set> using namespace std; typedef pair<int, int> P; template <typename T> struct SegmentTree { using F = function<T(T, T)>; const F f; const T e; int n; vector<T> seg; SegmentTree(int nn, const F f, const T e) : f(f), e(e){ n = 1; while(n <= nn) n <<= 1; seg.assign(n * 2, e); } void set(int i, T x){ seg[i + n] = x; } void build(){ for(int k = n - 1; k > 0; k--){ seg[k] = f(seg[k * 2], seg[k * 2 + 1]); } } void update(int i, T x){ int k = i + n; seg[k] = x; while(k >>= 1){ seg[k] = f(seg[k * 2], seg[k * 2 + 1]); } } T query(int l, int r){ l += n, r += n; T L = e, R = e; for(; l != r; l >>= 1, r >>= 1){ if(l % 2) L = f(L, seg[l++]); if(r % 2) R = f(seg[--r], R); } return f(L, R); } T operator[](const int i)const { return seg[i + n]; } template<typename C> int right_bound_sub(int k, const C &check, T x){ while(k < n){ if(check(f(x, seg[k * 2]))){ k = k * 2; } else{ x = f(x, seg[k * 2]); k = k * 2 + 1; } } return k - n; } template <typename C> int right_bound(int i, const C &check){ T x = e; for(int l = i + n, r = n * 2; l != r; l >>= 1, r >>= 1){ if(l % 2){ if(check(f(x, seg[l]))){ return right_bound_sub(l, check, x); } x = f(x, seg[l]); l++; } } return -1; } template <typename C> int left_bound_sub(int k, const C &check, T x){ while(k < n){ if(check(f(seg[k * 2 + 1], x))){ k = k * 2 + 1; } else{ x = f(seg[k * 2 + 1], x); k = k * 2; } } return k - n; } template <typename C> int left_bound(int i, const C &check){ T x = e; for(int l = n, r = i + n; l != r; l >>= 1, r >>= 1){ if(r % 2){ if(check(f(seg[--r], x))){ return left_bound_sub(r, check, x); } x = f(x, seg[r]); } } return -1; } }; vector<int> v[200005]; int main() { int t; cin >> t; while(t--){ int n; cin >> n; int a[200005], b[200005]; P p[200005]; for(int i = 0; i < n; i++){ cin >> a[i]; a[i]--; v[a[i]].push_back(i); } for(int i = 0; i < n; i++){ cin >> b[i]; b[i]--; p[i] = P(b[i], i); } sort(p, p + n); SegmentTree<int> seg(n, [](int a, int b){return max(a, b);}, 0); for(int i = 0; i < n; i++) seg.set(i, a[i]); seg.build(); set<int> st; bool f = true; for(int u = 0; u < n; u++){ f = false; int i = p[u].second; int j = lower_bound(v[b[i]].begin(), v[b[i]].end(), i) - v[b[i]].begin(); if(j < (int)v[b[i]].size()){ int r = v[b[i]][j]; auto itr = st.lower_bound(i); if(itr != st.end()) r = min(r, *itr); if(seg.query(i, r + 1) == b[i]) f = true; } if(j > 0){ int l = v[b[i]][j - 1]; auto itr = st.lower_bound(i); if(itr != st.begin()) l = max(l, *--itr); if(seg.query(l, i + 1) == b[i]) f = true; } if(!f) break; st.insert(i); } if(f) cout << "Yes" << endl; else cout << "No" << endl; for(int i = 0; i < n; i++) v[i].clear(); } }