結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー rogi52rogi52
提出日時 2021-11-27 00:58:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 387 ms / 3,000 ms
コード長 4,278 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 179,072 KB
実行使用メモリ 32,360 KB
最終ジャッジ日時 2023-09-12 06:14:22
合計ジャッジ時間 8,841 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 9 ms
4,376 KB
testcase_02 AC 9 ms
4,380 KB
testcase_03 AC 9 ms
4,380 KB
testcase_04 AC 9 ms
4,376 KB
testcase_05 AC 9 ms
4,380 KB
testcase_06 AC 264 ms
11,524 KB
testcase_07 AC 291 ms
16,216 KB
testcase_08 AC 249 ms
13,928 KB
testcase_09 AC 240 ms
11,144 KB
testcase_10 AC 263 ms
16,972 KB
testcase_11 AC 326 ms
17,928 KB
testcase_12 AC 313 ms
17,840 KB
testcase_13 AC 326 ms
17,776 KB
testcase_14 AC 311 ms
17,892 KB
testcase_15 AC 315 ms
17,760 KB
testcase_16 AC 368 ms
31,896 KB
testcase_17 AC 367 ms
31,872 KB
testcase_18 AC 381 ms
31,900 KB
testcase_19 AC 380 ms
31,900 KB
testcase_20 AC 387 ms
31,944 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 137 ms
4,376 KB
testcase_25 AC 215 ms
32,360 KB
testcase_26 AC 218 ms
32,356 KB
testcase_27 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

template <class S, S (*op)(S, S), S (*e)()> struct segtree {
    public:
        segtree() : segtree(0) {}
        segtree(int n) : segtree(std::vector<S>(n, e())) {}
        segtree(const std::vector<S>& v) : _n(int(v.size())) {
            log = ceil_pow2(_n);
            size = 1 << log;
            d = std::vector<S>(2 * size, e());
            for (int i = 0; i < _n; i++) d[size + i] = v[i];
            for (int i = size - 1; i >= 1; i--) {
                update(i);
            }
        }

        int ceil_pow2(int n) {
            int x = 0;
            while ((1U << x) < (unsigned int)(n)) x++;
            return x;
        }

    // a[p] <- x
    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }

    // a[p]
    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }

    // [l, r)
    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;

        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }

    S all_prod() { return d[1]; }

    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                    sm = op(sm, d[l]);
                    l++;
                }
            }
            return l - size;
        }
            sm = op(sm, d[l]);
        l++;
        } while ((l & -l) != l);
        return _n;
    }

    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }

    private:
        int _n, size, log;
        std::vector<S> d;

    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

int op(int a, int b) { return max(a,b); }
int e() { return 0; }

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);

    int T; cin >> T;
    while(T--) {
        
        int n; cin >> n;
        vector<int> a(n), b(n);
        rep(i,n) cin >> a[i], a[i]--;
        rep(i,n) cin >> b[i], b[i]--;

        set<int> sa, sb;
        rep(i,n) sa.insert(i);
        vector<vector<int>> va(n), vb(n);
        rep(i,n) va[a[i]].push_back(i);
        rep(i,n) vb[b[i]].push_back(i);
        segtree<int,op,e> st(a);

        int ok = 1;
        rep(v,n) {
            for(auto i : va[v]) sa.erase(i);
            for(auto i : vb[v]) {
                int L = -1, R = n;

                auto it = sa.lower_bound(i);
                if(it != sa.begin()) L = max(L, *prev(it));
                if(it != sa.end()) R = min(R, *it);

                it = sb.lower_bound(i);
                if(it != sb.begin()) L = max(L, *prev(it));
                if(it != sb.end()) R = min(R, *it);

                L++; R--;
                ok &= L <= i && i <= R;
                ok &= st.prod(L, R + 1) == b[i];
            }
            for(auto i : vb[v]) sb.insert(i);
        }

        cout << (ok ? "Yes" : "No") << endl;
    }
}
0