結果
問題 | No.1768 The frog in the well knows the great ocean. |
ユーザー | se1ka2 |
提出日時 | 2021-11-26 23:34:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,723 bytes |
コンパイル時間 | 783 ms |
コンパイル使用メモリ | 84,144 KB |
実行使用メモリ | 17,104 KB |
最終ジャッジ日時 | 2024-06-29 19:06:16 |
合計ジャッジ時間 | 7,431 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
10,400 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 11 ms
9,732 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 147 ms
12,456 KB |
testcase_07 | AC | 153 ms
13,864 KB |
testcase_08 | AC | 145 ms
12,616 KB |
testcase_09 | AC | 148 ms
12,200 KB |
testcase_10 | WA | - |
testcase_11 | AC | 158 ms
14,824 KB |
testcase_12 | AC | 153 ms
14,148 KB |
testcase_13 | AC | 147 ms
14,216 KB |
testcase_14 | AC | 150 ms
14,212 KB |
testcase_15 | AC | 155 ms
14,080 KB |
testcase_16 | AC | 172 ms
17,056 KB |
testcase_17 | AC | 170 ms
17,040 KB |
testcase_18 | AC | 174 ms
17,076 KB |
testcase_19 | AC | 167 ms
17,104 KB |
testcase_20 | AC | 174 ms
17,044 KB |
testcase_21 | AC | 4 ms
10,140 KB |
testcase_22 | AC | 5 ms
10,524 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 138 ms
16,760 KB |
testcase_26 | AC | 130 ms
16,760 KB |
testcase_27 | WA | - |
ソースコード
#include <functional> #include <algorithm> #include <iostream> #include <vector> 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(); 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()){ if(seg.query(i, v[b[i]][j] + 1) == b[i]) f = true; } if(j > 0){ if(seg.query(v[b[i]][j - 1], i + 1) == b[i]) f = true; } if(!f) break; } if(f) cout << "Yes" << endl; else cout << "No" << endl; for(int i = 0; i < n; i++) v[i].clear(); } }