結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー milanis48663220milanis48663220
提出日時 2021-11-27 00:37:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 3,000 ms
コード長 2,592 bytes
コンパイル時間 1,361 ms
コンパイル使用メモリ 129,384 KB
実行使用メモリ 24,936 KB
最終ジャッジ日時 2024-06-29 19:17:05
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 8 ms
6,940 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 202 ms
10,112 KB
testcase_07 AC 216 ms
12,988 KB
testcase_08 AC 196 ms
11,392 KB
testcase_09 AC 202 ms
9,060 KB
testcase_10 AC 210 ms
13,604 KB
testcase_11 AC 230 ms
13,948 KB
testcase_12 AC 215 ms
14,084 KB
testcase_13 AC 197 ms
13,996 KB
testcase_14 AC 217 ms
14,076 KB
testcase_15 AC 254 ms
14,096 KB
testcase_16 AC 269 ms
24,348 KB
testcase_17 AC 262 ms
24,404 KB
testcase_18 AC 263 ms
24,340 KB
testcase_19 AC 247 ms
24,368 KB
testcase_20 AC 257 ms
24,524 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 117 ms
6,940 KB
testcase_25 AC 265 ms
24,936 KB
testcase_26 AC 252 ms
24,928 KB
testcase_27 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <atcoder/lazysegtree>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}


using T = int;
using S = int;
T INF = 1e9;
T e(){
    return -INF;
}
T op(T a, T b){
    return max(a, b);
}
T id(){
    return -1;
}
T mapping(S a, T b){
    if(a == id()) return b;
    return a;
}
T composition(T a, T b){
    if(a == id()) return b;
    return a;
}

using Seg = atcoder::lazy_segtree<T, op, e, S, mapping, composition, id>;

void solve(){
    int n; cin >> n;
    vector<int> a(n), b(n);
    vector<vector<int>> a_idx(n), b_idx(n);
    for(int i = 0; i < n; i++) {
        cin >> a[i];
        a[i]--;
        a_idx[a[i]].push_back(i);
    }
    for(int i = 0; i < n; i++) {
        cin >> b[i];
        b[i]--;
        b_idx[b[i]].push_back(i);
    }
    Seg seg(n);
    for(int j = 0; j < n; j++) seg.apply(j, j+1, a[j]);
    for(int i = 0; i < n; i++){
        for(int idx: a_idx[i]){
            auto g = [&](T x){
                return x <= i;
            };
            int l = seg.min_left(idx+1, g);
            int r = seg.max_right(idx, g);   
            seg.apply(l, r, i);
        }
        for(int idx: b_idx[i]){
            if(seg.get(idx) != i){
                cout << "No" << endl;
                return;
            }
            seg.set(idx, INF);
        }
    }
    cout << "Yes" << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int t; cin >> t;
    while(t--) solve();
}
0