結果

問題 No.1153 ねこちゃんゲーム
ユーザー mkawa2mkawa2
提出日時 2021-10-13 14:51:12
言語 PyPy3
(7.3.13)
結果
WA  
実行時間 -
コード長 2,331 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 80,284 KB
実行使用メモリ 194,720 KB
最終ジャッジ日時 2023-10-17 19:05:59
合計ジャッジ時間 43,029 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,444 KB
testcase_01 AC 43 ms
55,444 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 72 ms
72,616 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,056 ms
168,944 KB
testcase_08 WA -
testcase_09 AC 986 ms
169,516 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 964 ms
169,868 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 952 ms
165,848 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 953 ms
166,412 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,072 ms
194,720 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from collections import Counter

n, m = LI()
aa = LI1()
to = [[] for _ in range(n)]
for _ in range(n-1):
    u, v = LI1()
    to[u].append(v)
    to[v].append(u)

# ***************ここから本体*****************

# 設定
root = 0
e = lambda: set()  # 単位元

def op(a, b):
    if isinstance(b, set): return a | b
    a.add(b)
    return a

def trans_up(u):
    for a in range(n):
        if a not in dp[u]:
            dp[u] = a
            return

def trans_down(u):
    for a in range(n):
        if a not in rdp[u]:
            rdp[u] = a
            return

# dfs順を作る
uu = []
stack = [root]
par = [-1]*n
while stack:
    u = stack.pop()
    uu.append(u)
    vv = []
    # ↓変数注意
    for v in to[u]:
        if v == par[u]: continue
        vv.append(v)
        par[v] = u
        stack.append(v)
    to[u] = vv
# print("to",to)
# print("par",par)

dp = [e() for _ in range(n)]
rdp = [e() for _ in range(n)]
# 下から更新
for u in uu[::-1]:
    p = par[u]
    if p != -1:
        trans_up(u)
        dp[p] = op(dp[p], dp[u])
# print("dp",dp)

# 上から更新
gg = [-1]*n
for u in uu:
    cnt=Counter()
    if u!=root:
        cnt[rdp[u]]+=1
    for v in to[u]:
        cnt[dp[v]]+=1
    for g in range(n):
        if cnt[g]==0:
            gg[u] = g
            break
    for v in to[u]:
        if cnt[dp[v]]==1:
            rdp[v]=dp[v]
        else:
            rdp[v]=gg[u]

g = 0
for a in aa: g ^= gg[a]
# print(g)

if g == 0:
    print(-1, -1)
    exit()

for i, a in enumerate(aa):
    for v in to[a]:
        if g ^ gg[a] ^ dp[v] == 0:
            print(i+1, v+1)
            exit()
    if a != root and g ^ gg[a] ^ rdp[a] == 0:
        print(i+1, par[a]+1)
        exit()
0