結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー t98slidert98slider
提出日時 2023-05-19 21:51:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 5,002 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 176,676 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-10 05:25:01
合計ジャッジ時間 10,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 164 ms
5,548 KB
testcase_02 AC 170 ms
7,808 KB
testcase_03 AC 165 ms
7,988 KB
testcase_04 AC 167 ms
8,032 KB
testcase_05 AC 165 ms
8,068 KB
testcase_06 AC 173 ms
11,896 KB
testcase_07 AC 176 ms
11,552 KB
testcase_08 AC 181 ms
11,904 KB
testcase_09 AC 186 ms
12,032 KB
testcase_10 AC 171 ms
7,936 KB
testcase_11 AC 176 ms
7,936 KB
testcase_12 AC 177 ms
7,904 KB
testcase_13 AC 183 ms
7,936 KB
testcase_14 AC 183 ms
7,808 KB
testcase_15 AC 177 ms
8,028 KB
testcase_16 AC 180 ms
7,904 KB
testcase_17 AC 174 ms
7,936 KB
testcase_18 AC 177 ms
7,936 KB
testcase_19 AC 176 ms
7,936 KB
testcase_20 AC 178 ms
7,904 KB
testcase_21 AC 191 ms
12,544 KB
testcase_22 AC 187 ms
12,544 KB
testcase_23 AC 184 ms
12,416 KB
testcase_24 AC 190 ms
12,416 KB
testcase_25 AC 188 ms
12,416 KB
testcase_26 AC 187 ms
12,416 KB
testcase_27 AC 188 ms
12,544 KB
testcase_28 AC 186 ms
12,416 KB
testcase_29 AC 197 ms
12,416 KB
testcase_30 AC 191 ms
12,416 KB
testcase_31 AC 116 ms
12,544 KB
testcase_32 AC 121 ms
12,416 KB
testcase_33 AC 115 ms
12,544 KB
testcase_34 AC 126 ms
12,544 KB
testcase_35 AC 125 ms
12,416 KB
testcase_36 AC 131 ms
12,416 KB
testcase_37 AC 10 ms
5,376 KB
testcase_38 AC 176 ms
7,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

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);
        }
    }

    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);
    }

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

    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;
    int ceil_pow2(int n) {
        int x = 0;
        while ((1U << x) < (unsigned int)(n)) x++;
        return x;
    }
    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

using S = pair<int,int>;

S op(S lhs, S rhs){
    if(rhs.second == 0) return S({lhs.first & rhs.first, lhs.second});
    if(rhs.second == 1) return S({lhs.first | rhs.first, lhs.second});
    if(rhs.second == 2) return S({lhs.first ^ rhs.first, lhs.second});
    if(lhs.first == 1) return S({rhs.first, lhs.second});
    return make_pair(1, lhs.second);
}

S e(){
    return S({1, 0});
}

//xにfを作用させた時の値の変化
int op2(int f, int x){return x + f;}
//作用させても変化させないもの
int e2(){return 0;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;
    cin >> T;
    auto f = [&](int u, int v, int op){
        if(op == 0) return u & v;
        if(op == 1) return u | v;
        if(op == 2) return u ^ v;
        if(u == 1) return v;
        return 1;
    };
    //and or xor imp
    auto g = [&](string s){
        if(s == "and") return 0;
        if(s == "or") return 1;
        if(s == "xor") return 2;
        if(s == "True") return 1;
        if(s == "False") return 0;
        return 3;
    };
    while(T--){
        int n;
        cin >> n;
        vector<pair<int,int>> b(n, e());
        vector<int> c(n);
        for(int i = 0; i < n; i++){
            string s;
            cin >> s;
            b[i].first = g(s);
        }
        for(int i = 1; i < n; i++){
            string s;
            cin >> s;
            b[i].second = g(s);
        }
        segtree<S, op, e> seg(b);
        segtree<int, op2, e2> seg2(vector<int>(n, 1));
        for(int i = 0; i + 1 < n; i++){
            int v2;
            cin >> v2;
            int p = seg2.max_right(0, [&](int v){return v < v2;});
            int p2 = seg2.max_right(0, [&](int v){return v < v2 + 1;});
            //cerr << p << " " << p2 << '\n';
            seg2.set(p2, 0);
            seg.set(p, op(seg.get(p), seg.get(p2)));
            seg.set(p2, e());
        }
        cout << (seg.all_prod().first == 1 ? "True" : "False") << '\n';
    }
}
0