結果

問題 No.2618 除霊
ユーザー mkawa2mkawa2
提出日時 2024-01-26 23:13:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 1,328 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 148,896 KB
最終ジャッジ日時 2024-09-28 09:01:56
合計ジャッジ時間 21,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 475 ms
110,976 KB
testcase_07 AC 471 ms
110,888 KB
testcase_08 AC 513 ms
122,004 KB
testcase_09 AC 511 ms
121,112 KB
testcase_10 AC 531 ms
140,624 KB
testcase_11 AC 436 ms
110,860 KB
testcase_12 AC 522 ms
120,960 KB
testcase_13 AC 342 ms
114,396 KB
testcase_14 AC 447 ms
141,060 KB
testcase_15 AC 367 ms
113,752 KB
testcase_16 AC 375 ms
112,372 KB
testcase_17 AC 444 ms
130,688 KB
testcase_18 AC 457 ms
138,376 KB
testcase_19 AC 399 ms
113,912 KB
testcase_20 AC 372 ms
114,704 KB
testcase_21 AC 433 ms
124,724 KB
testcase_22 AC 470 ms
148,896 KB
testcase_23 AC 400 ms
115,104 KB
testcase_24 AC 392 ms
113,628 KB
testcase_25 AC 469 ms
127,136 KB
testcase_26 AC 442 ms
139,844 KB
testcase_27 AC 400 ms
114,292 KB
testcase_28 AC 399 ms
114,816 KB
testcase_29 AC 459 ms
129,536 KB
testcase_30 AC 488 ms
142,244 KB
testcase_31 AC 539 ms
121,984 KB
testcase_32 AC 450 ms
106,624 KB
testcase_33 AC 481 ms
107,776 KB
testcase_34 AC 496 ms
108,672 KB
testcase_35 AC 483 ms
110,720 KB
testcase_36 AC 542 ms
117,248 KB
testcase_37 AC 527 ms
116,356 KB
testcase_38 AC 559 ms
123,748 KB
testcase_39 AC 550 ms
126,080 KB
testcase_40 AC 557 ms
131,632 KB
testcase_41 AC 569 ms
132,096 KB
testcase_42 AC 557 ms
140,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n = II()
to = [[] for _ in range(n)]
deg = [0]*n
for _ in range(n-1):
    u, v = LI1()
    to[u].append(v)
    to[v].append(u)
    deg[u] += 1
    deg[v] += 1
m = II()
vv=LI1()

go = [0]*n
tr = [0]*n
for v in vv:
    go[v] = 1
    tr[v]+=1
    for u in to[v]:
        tr[u]+=1

one=[0]*n
for u in vv:
    for v in to[u]:
        one[u]+=tr[v]==1
# pDB(tr)
# pDB(one)

tot=n-tr.count(0)
for u in range(n):
    ans=tot-one[u]
    for v in to[u]:
        ans-=one[v]
        if go[v] and tr[v]-go[u]-go[v]==0:ans-=1
    if go[u] or tr[u]>1:ans-=1
    print(ans)

0