結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,524 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 837 ms
129,284 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 826 ms
132,040 KB
testcase_19 WA -
testcase_20 AC 777 ms
126,280 KB
testcase_21 AC 577 ms
137,928 KB
testcase_22 WA -
testcase_23 AC 582 ms
137,928 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 597 ms
138,088 KB
testcase_27 AC 580 ms
137,936 KB
testcase_28 AC 585 ms
137,768 KB
testcase_29 WA -
testcase_30 AC 582 ms
138,280 KB
testcase_31 AC 151 ms
135,660 KB
testcase_32 AC 151 ms
134,956 KB
testcase_33 AC 151 ms
135,364 KB
testcase_34 AC 192 ms
137,468 KB
testcase_35 WA -
testcase_36 AC 196 ms
137,136 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