結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー t98slidert98slider
提出日時 2023-05-19 21:52:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,958 bytes
コンパイル時間 3,863 ms
コンパイル使用メモリ 231,416 KB
実行使用メモリ 12,264 KB
最終ジャッジ日時 2023-08-22 23:51:28
合計ジャッジ時間 14,186 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 178 ms
5,588 KB
testcase_02 AC 200 ms
7,940 KB
testcase_03 AC 187 ms
7,852 KB
testcase_04 AC 189 ms
7,912 KB
testcase_05 AC 194 ms
7,840 KB
testcase_06 AC 205 ms
11,684 KB
testcase_07 AC 200 ms
11,296 KB
testcase_08 AC 203 ms
11,984 KB
testcase_09 AC 209 ms
11,720 KB
testcase_10 AC 194 ms
7,808 KB
testcase_11 AC 207 ms
7,980 KB
testcase_12 AC 201 ms
7,800 KB
testcase_13 AC 201 ms
7,740 KB
testcase_14 AC 201 ms
7,788 KB
testcase_15 AC 201 ms
7,788 KB
testcase_16 AC 200 ms
7,828 KB
testcase_17 AC 204 ms
7,788 KB
testcase_18 AC 202 ms
7,824 KB
testcase_19 AC 201 ms
7,988 KB
testcase_20 AC 199 ms
7,788 KB
testcase_21 AC 217 ms
12,220 KB
testcase_22 AC 220 ms
12,216 KB
testcase_23 AC 222 ms
12,208 KB
testcase_24 AC 224 ms
12,160 KB
testcase_25 AC 227 ms
12,204 KB
testcase_26 AC 222 ms
12,204 KB
testcase_27 AC 231 ms
12,160 KB
testcase_28 AC 238 ms
12,252 KB
testcase_29 AC 239 ms
12,248 KB
testcase_30 AC 225 ms
12,224 KB
testcase_31 AC 130 ms
12,200 KB
testcase_32 AC 131 ms
12,264 KB
testcase_33 AC 130 ms
12,244 KB
testcase_34 AC 144 ms
12,204 KB
testcase_35 AC 144 ms
12,180 KB
testcase_36 AC 144 ms
12,252 KB
testcase_37 AC 11 ms
4,376 KB
testcase_38 AC 204 ms
7,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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