結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー CoCo_Japan_panCoCo_Japan_pan
提出日時 2023-05-19 22:54:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,471 bytes
コンパイル時間 3,500 ms
コンパイル使用メモリ 225,144 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-05-10 06:20:16
合計ジャッジ時間 9,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 116 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 135 ms
5,632 KB
testcase_22 AC 135 ms
5,760 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 137 ms
5,760 KB
testcase_28 AC 137 ms
5,632 KB
testcase_29 AC 138 ms
5,632 KB
testcase_30 AC 137 ms
5,632 KB
testcase_31 AC 72 ms
5,632 KB
testcase_32 WA -
testcase_33 AC 72 ms
5,760 KB
testcase_34 WA -
testcase_35 AC 80 ms
5,632 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "/home/cocojapanpan/Procon_CPP/proconLibrary/lib/template/procon.hpp"

#ifndef DEBUG
// 提出時にassertはオフ
#ifndef NDEBUG
#define NDEBUG
#endif
// 定数倍高速化
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#endif

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

#define ALL(x) (x).begin(), (x).end()
template <class T>
using vec = vector<T>;
template <class T, class S>
inline bool chmax(T &a, const S &b) {
    return (a < b ? a = b, 1 : 0);
}
template <class T, class S>
inline bool chmin(T &a, const S &b) {
    return (a > b ? a = b, 1 : 0);
}
template <class T>
constexpr T INF = 1'000'000'000;
template <>
constexpr int INF<int> = 1'000'000'000;
template <>
constexpr ll INF<ll> = ll(INF<int>) * INF<int> * 2;
#line 2 "/home/cocojapanpan/Procon_CPP/proconLibrary/lib/data-structure/fenwickTree.hpp"

#line 4 "/home/cocojapanpan/Procon_CPP/proconLibrary/lib/data-structure/fenwickTree.hpp"

template <typename T>
// 内部では1-baseですが、外からは0-baseに見せてます
struct fenwickTree {
   public:
    explicit fenwickTree(int size) : _size(size), data(size + 1, 0) {
        // sizeを超えない2べきを求めておく(lowerBound用)
        beki_floor = 1;
        while (beki_floor * 2 <= _size) {
            beki_floor *= 2;
        }
    }

    // 全てを1にする初期化
    void init_all_one() {
        for (int i = 1; i <= _size; i++) {
            data[i] = i & (-i);
        }
    }

    // a[index] += x を行う
    void add(int index, const T &x) {
        assert(0 <= index && index < _size);
        int curIndex = index + 1;
        while (curIndex <= _size) {
            data[curIndex] += x;
            // 区間の長さ分だけ番号に足したところを更新していく
            curIndex += curIndex & (-curIndex);
        }
    }

    // a[index] = xとする
    void set(int index, const T &x) {
        assert(0 <= index && index < _size);
        // +(x - a[index])をするだけ
        add(index, x - sum(index, index + 1));
    }

    // a[left] + ... + a[right - 1] を求める
    T sum(int left, int right) const {
        assert(0 <= left && left <= right && right <= _size);
        return sumFromFirst(right) - sumFromFirst(left);
    }

    // a[0] + ... a[x] >= w なる最小のxを求める(なければx = _size)
    int lowerBound(int w) const {
        if (w <= 0) return 0;
        int x = 0;
        for (int k = beki_floor; k > 0; k >>= 1) {
            if (x + k <= _size && data[x + k] < w) {
                w -= data[x + k];
                x += k;
            }
        }
        return x;
    }

   private:
    int _size;
    std::vector<T> data;  // 1-base
    int beki_floor;  // _size以下の最大の2べき
    // a[0] + ... a[right - 1] の和を求める
    T sumFromFirst(int right) const {
        assert(0 <= right && right <= _size);
        if (right == 0) {
            return 0;
        }
        T ans = 0;
        int curIndex = right;
        while (curIndex > 0) {
            ans += data[curIndex];
            // 次に足すべき区間は番号から区間の長さだけ引いたもの
            curIndex -= curIndex & (-curIndex);
        }
        return ans;
    }
};
#line 3 "main.cpp"

bool op(bool l, char ope, bool r) {
    if(ope == 'a') return l & r;
    if(ope == 'o') return l | r;
    if(ope == 'x') return l ^ r;
    if(!l) return true;
    return r;
}

bool solve() {
    int N;
    cin >> N;
    vec<bool> X(N);
    for(int i = 0; i < N; i++) {
        string x;
        cin >> x;
        if(x == "True") {
            X[i] = true;
        } else {
            X[i] = false;
        }
    }
    vec<char> Y(N - 1);
    for(int i = 0; i < N - 1; i++) {
        string x;
        cin >> x;
        Y[i] = x[0];
    }
    vec<int> S(N - 1);
    for(int &s : S) {
        cin >> s;
    }
    fenwickTree<int> BIT_X(N), BIT_Y(N - 1);
    BIT_X.init_all_one(); BIT_Y.init_all_one();
    for(int s : S) {
        int x_id = BIT_X.lowerBound(s);
        int y_id = BIT_Y.lowerBound(s);
        bool ans = op(X[x_id], Y[y_id], X[x_id + 1]);
        X[x_id] = ans;
        BIT_X.add(x_id + 1, -1);
        BIT_Y.add(y_id, -1);
    }
    return X[BIT_X.lowerBound(1)];
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin >> T;
    while(T--) {
        cout << (solve() ? "True" : "False") << "\n";    
    }
}
0