結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー lloyzlloyz
提出日時 2023-05-19 22:43:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,745 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 138,856 KB
最終ジャッジ日時 2024-05-10 06:09:25
合計ジャッジ時間 24,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,336 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 AC 765 ms
129,232 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 806 ms
132,208 KB
testcase_19 WA -
testcase_20 AC 807 ms
126,228 KB
testcase_21 AC 605 ms
138,048 KB
testcase_22 WA -
testcase_23 AC 623 ms
138,476 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 615 ms
138,532 KB
testcase_27 AC 601 ms
137,904 KB
testcase_28 AC 605 ms
137,992 KB
testcase_29 WA -
testcase_30 AC 613 ms
138,048 KB
testcase_31 AC 162 ms
135,364 KB
testcase_32 AC 161 ms
135,236 KB
testcase_33 AC 161 ms
135,792 KB
testcase_34 AC 202 ms
137,276 KB
testcase_35 WA -
testcase_36 AC 204 ms
136,944 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        '''
        UnionFindクラス。nは要素数を表す。
        '''
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        '''
        要素xを含む集合の親を見つける関数。
        '''
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        '''
        要素xを含む集合と要素yを含む集合を合体する関数。
        基本的には、要素数が多い集合に統合される。
        要素数が同じときは要素yを含む集合に統合される。
        '''
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

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

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        '''
        要素xを含む集合の要素数を出す関数。
        '''
        return -self.parents[self.find(x)]

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

for _ in range(int(input())):
    n = int(input())
    P = list(input().split())
    OP = list(input().split())
    X = list(map(int, input().split()))
    UF = UnionFind(n)
    for i in range(n - 1):
        idx = X[i]
        op = OP[idx - 1]
        i, j = UF.find(idx - 1), UF.find(idx)
        s, t = P[i], P[j]
        if op == 'and':
            if s == 'True' and t == 'True':
                res = 'True'
            else:
                res = 'False'
        elif op == 'or':
            if s == 'True' or t == 'True':
                res = 'True'
            else:
                res = 'False'
        elif op == 'xor':
            if s != t:
                res = 'True'
            else:
                res = 'False'
        elif op == 'imp':
            if s == 'True':
                res = t
            else:
                res = 'True'
        UF.union(i, j)
        r = UF.find(i)
        P[i] = res
    print(P[UF.find(0)])
0