結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-18 01:55:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 1,744 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 207,680 KB
実行使用メモリ 11,152 KB
最終ジャッジ日時 2024-06-25 14:22:49
合計ジャッジ時間 16,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 238 ms
6,944 KB
testcase_02 AC 265 ms
7,152 KB
testcase_03 AC 255 ms
7,464 KB
testcase_04 AC 248 ms
7,432 KB
testcase_05 AC 253 ms
7,920 KB
testcase_06 AC 263 ms
9,200 KB
testcase_07 AC 269 ms
8,744 KB
testcase_08 AC 273 ms
9,728 KB
testcase_09 AC 273 ms
9,688 KB
testcase_10 AC 263 ms
7,220 KB
testcase_11 AC 265 ms
7,244 KB
testcase_12 AC 268 ms
7,372 KB
testcase_13 AC 265 ms
7,368 KB
testcase_14 AC 270 ms
7,504 KB
testcase_15 AC 267 ms
7,456 KB
testcase_16 AC 262 ms
7,500 KB
testcase_17 AC 267 ms
7,368 KB
testcase_18 AC 271 ms
7,372 KB
testcase_19 AC 270 ms
7,368 KB
testcase_20 AC 266 ms
7,372 KB
testcase_21 AC 293 ms
10,996 KB
testcase_22 AC 290 ms
11,060 KB
testcase_23 AC 291 ms
11,008 KB
testcase_24 AC 291 ms
10,992 KB
testcase_25 AC 294 ms
11,000 KB
testcase_26 AC 292 ms
11,136 KB
testcase_27 AC 293 ms
11,008 KB
testcase_28 AC 294 ms
11,152 KB
testcase_29 AC 293 ms
11,108 KB
testcase_30 AC 294 ms
11,008 KB
testcase_31 AC 217 ms
11,004 KB
testcase_32 AC 220 ms
11,136 KB
testcase_33 AC 217 ms
11,136 KB
testcase_34 AC 238 ms
10,976 KB
testcase_35 AC 237 ms
11,008 KB
testcase_36 AC 238 ms
11,008 KB
testcase_37 AC 24 ms
5,376 KB
testcase_38 AC 262 ms
7,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:82:18: warning: 'r2' may be used uninitialized [-Wmaybe-uninitialized]
   82 |     cout << (X[r2] ? "True" : "False") << endl;
      |                  ^
main.cpp:51:30: note: 'r2' was declared here
   51 |     int N, l, r, c, idx, l2, r2;
      |                              ^~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

//RSQ (0-indexed)
template<class T> struct BIT {
    vector<T> bit;
    int N;

    BIT (int n){
        N = n;
        bit.resize(N);
    }

    void add(int loc, T val){
        loc++;
        while(loc <= N){
            bit[loc-1] += val;
            loc += loc & -loc;
        }
    }

    T sum(int l, int r){
        T res = _sum(r) - _sum(l-1);
        return res;
    }

    T _sum(int r){
        r++;
        T res = 0;
        while(r > 0){
            res += bit[r-1];
            r -= r & -r;
        }
        return res;
    }
};

int f(int a, int b, string &op){
    if (op == "and") return a & b;
    else if (op == "or") return a | b;
    else if (op == "xor") return a ^ b;
    else{
        if (a) return b;
        else return 1;
    }
}

void solve(){
    int N, l, r, c, idx, l2, r2;
    cin >> N;
    string S;
    vector<int> X(N);
    vector<string> Y(N-1);
    BIT<int> tree(N);
    for (int i=0; i<N; i++){
        tree.add(i, 1);
    }
    for (int i=0; i<N; i++){
        cin >> S;
        X[i] = (S == "True" ? 1 : 0);
    }
    for (int i=0; i<N-1; i++) cin >> Y[i];
    for (int i=0; i<N-1; i++){
        cin >> idx;
        l=-1; r=N-1;
        while(r-l>1){
            c = (l+r)/2;
            if (tree.sum(0, c) >= idx) r=c;
            else l=c;
        }
        l2=-1; r2=N-1;
        while(r2-l2>1){
            c = (l2+r2)/2;
            if (tree.sum(0, c) >= idx+1) r2=c;
            else l2=c;
        }
        tree.add(r, -1);
        X[r2] = f(X[r], X[r2], Y[r]);
    }
    cout << (X[r2] ? "True" : "False") << endl;
}

int main(){

    int T;
    cin >> T;
    while(T){
        T--;
        solve();
    }

    return 0;
}
0