結果
問題 | No.1768 The frog in the well knows the great ocean. |
ユーザー | 👑 emthrm |
提出日時 | 2021-11-26 23:31:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,465 bytes |
コンパイル時間 | 2,435 ms |
コンパイル使用メモリ | 225,960 KB |
実行使用メモリ | 29,836 KB |
最終ジャッジ日時 | 2024-06-29 19:04:39 |
合計ジャッジ時間 | 5,175 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 77 ms
12,988 KB |
testcase_13 | WA | - |
testcase_14 | AC | 78 ms
12,784 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 83 ms
22,108 KB |
testcase_20 | AC | 89 ms
22,016 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 96 ms
29,696 KB |
testcase_27 | AC | 2 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 1000000007; // constexpr int MOD = 998244353; constexpr int DY[]{1, 0, -1, 0}, DX[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}, DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; void solve() { int n; cin >> n; n += 2; vector<int> a(n, INF), b(n, INF); FOR(i, 1, n - 1) cin >> a[i]; FOR(i, 1, n - 1) cin >> b[i]; REP(i, n) { if (a[i] > b[i]) { cout << "No\n"; return; } } map<int, vector<pair<int, int>>> seg; for (int i = 1; i < n - 1;) { int j = i + 1; while (j < n - 1 && b[i] == b[j]) ++j; seg[-b[i]].emplace_back(i, j - 1); i = j; } vector<set<int>> que(n); for (const auto [num_, v] : seg) { const int num = -num_; for (const auto [l, r] : v) { if (b[l - 1] > num && que[l - 1].count(num) == 1) { if (b[r + 1] < num) { int mx = -INF; for (int i = r; i >= l; --i) { if (chmax(mx, a[i]) && mx < num) que[r + 1].emplace(mx); } for (auto it = que[l - 1].begin(); it != que[l - 1].end() && *it <= mx; it = que[l - 1].erase(it)) {} while (!que[l - 1].empty() && *que[l - 1].rbegin() >= num) { que[l - 1].erase(prev(que[l - 1].end())); } if (que[l - 1].size() > que[r + 1].size()) swap(que[l - 1], que[r + 1]); copy(ALL(que[l - 1]), inserter(que[r + 1], que[r + 1].end())); } } else if (b[r + 1] > num && que[r + 1].count(num) == 1) { if (b[l - 1] < num) { int mx = -INF; for (int i = l; i <= r; ++i) { if (chmax(mx, a[i]) && mx < num) que[l - 1].emplace(mx); } for (auto it = que[r + 1].begin(); it != que[r + 1].end() && *it <= mx; it = que[r + 1].erase(it)) {} while (!que[r + 1].empty() && *que[r + 1].rbegin() >= num) { que[r + 1].erase(prev(que[r + 1].end())); } if (que[r + 1].size() > que[l - 1].size()) swap(que[r + 1], que[l - 1]); copy(ALL(que[r + 1]), inserter(que[l - 1], que[l - 1].end())); } } else if (count(a.begin() + l, a.begin() + (r + 1), num) > 0) { FOR(i, l, r + 1) { if (a[i] == num) { int mx = -INF; FOR(j, l, i) { if (chmax(mx, a[j]) && mx < num) que[l - 1].emplace(mx); } break; } } for (int i = r; i >= l; --i) { if (a[i] == num) { int mx = -INF; for (int j = r; j > i; --j) { if (chmax(mx, a[j]) && mx < num) que[r + 1].emplace(mx); } break; } } } else { cout << "No\n"; return; } } } cout << "Yes\n"; } int main() { int t; cin >> t; while (t--) solve(); return 0; }