結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー 👑 NachiaNachia
提出日時 2021-11-26 23:14:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,751 bytes
コンパイル時間 1,017 ms
コンパイル使用メモリ 100,164 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-29 19:01:53
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 147 ms
5,380 KB
testcase_07 AC 151 ms
7,136 KB
testcase_08 AC 142 ms
6,784 KB
testcase_09 AC 140 ms
5,376 KB
testcase_10 AC 145 ms
7,136 KB
testcase_11 AC 157 ms
7,392 KB
testcase_12 AC 146 ms
7,388 KB
testcase_13 AC 154 ms
7,396 KB
testcase_14 AC 148 ms
7,392 KB
testcase_15 AC 152 ms
7,296 KB
testcase_16 AC 168 ms
11,392 KB
testcase_17 AC 173 ms
11,392 KB
testcase_18 AC 170 ms
11,392 KB
testcase_19 AC 157 ms
11,392 KB
testcase_20 AC 154 ms
11,392 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 143 ms
11,392 KB
testcase_26 AC 133 ms
11,392 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/segtree>
#include <atcoder/lazysegtree>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)



namespace rmq{
  using S = int;
  S op(S l, S r){ return min(l,r); }
  S e(){ return 1001001001; }
  using rmq = atcoder::segtree<S,op,e>;
}


namespace rurmq{
  using S = int;
  S e(){ return -1; }
  S op(S l, S r){ return e(); }
  using F = int;
  S mapping(F f, S x){ if(f == -1) return x; return f; }
  F composition(F f, F x){ if(f == -1) return x; return f; }
  F id(){ return -1; }
  using rurmq = atcoder::lazy_segtree<S,op,e,F,mapping,composition,id>;
}

struct non_less_than{
    int a;
    bool operator()(int x) const { return a <= x; }
};
struct greater_than{
    int a;
    bool operator()(int x) const { return a <= x; }
};


bool testcase(){
    int N; cin >> N;
    vector<int> A(N); rep(i,N) cin >> A[i];
    vector<int> B(N); rep(i,N) cin >> B[i];

    rmq::rmq rmqB(B);
    vector<int> idxA(N); rep(i,N) idxA[i] = i;
    sort(idxA.begin(), idxA.end(), [&](int l, int r)->bool{ return A[l] < A[r]; });

    rurmq::rurmq ruqB(N);

    for(int p : idxA){
        int l = rmqB.min_left(p, non_less_than{A[p]});
        int r = rmqB.max_right(p+1, non_less_than{A[p]});
        ruqB.apply(l,r,A[p]);
    }

    rep(i,N) if(B[i] != ruqB.get(i)) return false;
    return true;
}


int main(){
    int T; cin >> T;
    rep(i,T){
        if(testcase()) cout << "Yes\n";
        else cout << "No\n";
    }
    return 0;
}




struct ios_do_not_sync {
    ios_do_not_sync() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0