結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー ntudantuda
提出日時 2023-05-21 12:48:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,282 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,664 KB
最終ジャッジ日時 2024-07-02 17:32:24
合計ジャッジ時間 43,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 908 ms
105,316 KB
testcase_02 AC 1,025 ms
122,604 KB
testcase_03 AC 901 ms
104,932 KB
testcase_04 AC 896 ms
116,224 KB
testcase_05 AC 1,282 ms
117,504 KB
testcase_06 AC 973 ms
130,432 KB
testcase_07 AC 1,087 ms
111,248 KB
testcase_08 AC 1,069 ms
120,364 KB
testcase_09 AC 1,016 ms
120,360 KB
testcase_10 AC 1,078 ms
104,032 KB
testcase_11 AC 1,104 ms
110,424 KB
testcase_12 AC 1,090 ms
110,388 KB
testcase_13 AC 1,055 ms
112,372 KB
testcase_14 AC 1,119 ms
112,504 KB
testcase_15 AC 1,147 ms
113,328 KB
testcase_16 AC 1,099 ms
111,648 KB
testcase_17 AC 1,077 ms
111,132 KB
testcase_18 AC 1,076 ms
113,296 KB
testcase_19 AC 1,057 ms
110,672 KB
testcase_20 AC 1,075 ms
112,848 KB
testcase_21 AC 1,070 ms
132,140 KB
testcase_22 AC 1,064 ms
132,160 KB
testcase_23 AC 1,104 ms
132,664 KB
testcase_24 AC 1,119 ms
131,616 KB
testcase_25 AC 1,109 ms
131,952 KB
testcase_26 AC 1,077 ms
131,436 KB
testcase_27 AC 1,064 ms
131,584 KB
testcase_28 AC 1,069 ms
132,208 KB
testcase_29 AC 1,110 ms
132,080 KB
testcase_30 AC 1,154 ms
131,836 KB
testcase_31 AC 890 ms
129,072 KB
testcase_32 AC 851 ms
128,924 KB
testcase_33 AC 893 ms
130,108 KB
testcase_34 AC 873 ms
130,560 KB
testcase_35 AC 797 ms
131,420 KB
testcase_36 AC 874 ms
130,520 KB
testcase_37 AC 362 ms
81,852 KB
testcase_38 AC 1,090 ms
117,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

def search(x):
    lb = 0
    ub = N
    while ub - lb > 1:
        mid = (lb + ub) // 2
        if bit.sum(mid) <= x - 1:
            lb = mid
        else:
            ub = mid
    return lb + 1

T = int(input())
for t in range(T):
    N = int(input())
    X = [True if x == "True" else False for x in input().split()]
    Y = input().split()
    S = list(map(int, input().split()))
    bit = Bit(N + 1)
    B = [1] * (N + 1)
    for i in range(1, N + 1):
        bit.add(i, 1)

    for s in S:
        r = search(s+1) - 1
        l = search(s) - 1
        if Y[l] == "and":
            X[r] &= X[l]
        elif Y[l] == "or":
            X[r] |= X[l]
        elif Y[l] == "xor":
            X[r] ^= X[l]
        else:
            if X[l] == False:
                X[r] = True
        bit.add(l + 1, -1)
        B[l + 1] -= 1
    print(X[r])
0