結果
問題 | No.1768 The frog in the well knows the great ocean. |
ユーザー | yasuwo |
提出日時 | 2021-11-27 00:12:53 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,961 bytes |
コンパイル時間 | 4,787 ms |
コンパイル使用メモリ | 310,788 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-06-29 19:13:19 |
合計ジャッジ時間 | 9,726 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#line 1 "main.cpp" #include <bits/stdc++.h> #include <atcoder/all> // #include "library/templates/template.cpp" using namespace atcoder; using namespace std; using ll = long long int; using ull = unsigned long long int; using ld = long double; using pii = pair<int, int>; using pll = pair<ll, ll>; const std::string YES = "Yes"; const std::string NO = "No"; using S = int; S op(S x, S y) { return max(x, y); } S e() { return 0; } S opmin(S x, S y) { return min(x, y); } S emin() { return 1e9; } bool solve(int N, vector<int> &A, vector<int> &B) { for (int i = 0; i < N; i++) { if (A[i] > B[i]) { return false; } } segtree<S, op, e> seg(A); segtree<S, opmin, emin> segB(B); int le = 0, ri = 0; while (ri < N) { while (ri + 1 < N && B[le] == B[ri + 1]) { ri++; } if (seg.prod(le, ri + 1) == B[le]) { // ok } else { // seg.prod(le, ri + 1) < B[le] int riok = ri + 1, ring = N; while (abs(ring - riok)) { int rimid = (riok + ring) / 2; if (seg.prod(le, rimid) < B[le]) { riok = rimid; } else { ring = rimid; } } bool isok = false; if (seg.prod(le, ring) == B[le]) { if (segB.prod(le, ring) == B[le]) { // ok isok = true; } } if (!isok) { int leok = le, leng = 0; while (abs(ring - riok)) { int lemid = (leok + leng) / 2; if (seg.prod(leok, ri) < B[le]) { leok = lemid; } else { leng = lemid; } } if (seg.prod(leng, ri) == B[le]) { if (segB.prod(leng, ri) == B[le]) { // ok isok = true; } } } if (!isok) { return false; } } le = ri + 1; ri = ri + 1; } return true; } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr); int T; cin >> T; while (T--) { 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]; } cout << (solve(N, A, B) ? YES : NO) << "\n"; } return 0; }