結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー 👑 rin204rin204
提出日時 2024-05-04 16:36:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 2,719 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 130,828 KB
最終ジャッジ日時 2024-05-04 16:37:05
合計ジャッジ時間 19,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,120 KB
testcase_01 AC 502 ms
104,784 KB
testcase_02 AC 428 ms
123,124 KB
testcase_03 AC 410 ms
104,236 KB
testcase_04 AC 417 ms
107,480 KB
testcase_05 AC 458 ms
105,292 KB
testcase_06 AC 420 ms
116,904 KB
testcase_07 AC 534 ms
110,956 KB
testcase_08 AC 513 ms
120,564 KB
testcase_09 AC 482 ms
119,696 KB
testcase_10 AC 499 ms
107,788 KB
testcase_11 AC 503 ms
112,732 KB
testcase_12 AC 499 ms
114,884 KB
testcase_13 AC 544 ms
119,648 KB
testcase_14 AC 531 ms
112,364 KB
testcase_15 AC 580 ms
111,260 KB
testcase_16 AC 535 ms
111,820 KB
testcase_17 AC 542 ms
112,148 KB
testcase_18 AC 521 ms
113,552 KB
testcase_19 AC 562 ms
112,916 KB
testcase_20 AC 513 ms
111,184 KB
testcase_21 AC 472 ms
130,808 KB
testcase_22 AC 493 ms
130,828 KB
testcase_23 AC 460 ms
130,468 KB
testcase_24 AC 465 ms
130,524 KB
testcase_25 AC 458 ms
130,568 KB
testcase_26 AC 458 ms
130,740 KB
testcase_27 AC 495 ms
130,556 KB
testcase_28 AC 467 ms
130,436 KB
testcase_29 AC 472 ms
130,628 KB
testcase_30 AC 466 ms
130,568 KB
testcase_31 AC 293 ms
128,580 KB
testcase_32 AC 268 ms
128,392 KB
testcase_33 AC 260 ms
127,880 KB
testcase_34 AC 294 ms
129,852 KB
testcase_35 AC 305 ms
129,700 KB
testcase_36 AC 284 ms
129,344 KB
testcase_37 AC 289 ms
78,632 KB
testcase_38 AC 498 ms
125,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.par = [-1] * n
        self.group_ = n
        self.R = [i for i in range(n)]

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.group_ -= 1
        self.R[x] = max(self.R[x], self.R[y])
        return True

    def size(self, x):
        return -self.par[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    @property
    def group(self):
        return self.group_


class BIT:
    def __init__(self, n):
        self.n = n
        self.data = [0] * (n + 1)
        if n == 0:
            self.n0 = 0
        else:
            self.n0 = 1 << (n.bit_length() - 1)

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

    def sum(self, l, r=-1):
        if r == -1:
            return self.sum_(l)
        else:
            return self.sum_(r) - self.sum_(l)

    def get(self, i):
        return self.sum(i, i + 1)

    def add(self, i, x):
        i += 1
        while i <= self.n:
            self.data[i] += x
            i += i & -i

    def lower_bound(self, x):
        if x <= 0:
            return 0
        i = 0
        k = self.n0
        while k > 0:
            if i + k <= self.n and self.data[i + k] < x:
                x -= self.data[i + k]
                i += k
            k //= 2
        return i + 1


def solve():
    n = int(input())
    X = [True if x[0] == "T" else False for x in input().split()]
    Y = input().split()
    S = list(map(int, input().split()))

    bit = BIT(n)
    for i in range(n):
        bit.add(i, 1)

    for i, s in enumerate(S):
        p = bit.lower_bound(s)
        bit.add(p - 1, -1)
        S[i] = p - 1

    UF = UnionFind(n)
    for s in S:
        y = Y[s]
        u = UF.find(s)
        v = UF.find(UF.R[u] + 1)
        UF.unite(u, v)
        p = UF.find(u)

        if y == "and":
            nex = X[u] & X[v]
        elif y == "or":
            nex = X[u] | X[v]
        elif y == "xor":
            nex = X[u] ^ X[v]
        else:
            if X[u]:
                nex = X[v]
            else:
                nex = True
        X[p] = nex
    print(X[UF.find(0)])


for _ in range(int(input())):
    solve()
0