結果

問題 No.2618 除霊
ユーザー nikoro256nikoro256
提出日時 2024-01-26 23:13:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 168,924 KB
最終ジャッジ日時 2024-09-28 09:03:08
合計ジャッジ時間 23,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 576 ms
118,272 KB
testcase_07 AC 531 ms
117,760 KB
testcase_08 AC 681 ms
132,352 KB
testcase_09 AC 722 ms
145,096 KB
testcase_10 AC 638 ms
163,584 KB
testcase_11 AC 438 ms
112,364 KB
testcase_12 AC 594 ms
131,688 KB
testcase_13 AC 339 ms
109,904 KB
testcase_14 AC 461 ms
168,924 KB
testcase_15 AC 345 ms
107,672 KB
testcase_16 AC 379 ms
107,680 KB
testcase_17 AC 462 ms
136,968 KB
testcase_18 AC 498 ms
167,636 KB
testcase_19 AC 379 ms
108,628 KB
testcase_20 AC 354 ms
108,216 KB
testcase_21 AC 439 ms
138,248 KB
testcase_22 AC 489 ms
168,576 KB
testcase_23 AC 398 ms
112,836 KB
testcase_24 AC 427 ms
110,948 KB
testcase_25 AC 511 ms
136,196 KB
testcase_26 AC 522 ms
167,208 KB
testcase_27 AC 388 ms
110,920 KB
testcase_28 AC 407 ms
111,904 KB
testcase_29 AC 512 ms
136,168 KB
testcase_30 AC 545 ms
143,728 KB
testcase_31 AC 631 ms
132,180 KB
testcase_32 AC 423 ms
104,932 KB
testcase_33 AC 474 ms
108,672 KB
testcase_34 AC 525 ms
113,344 KB
testcase_35 AC 524 ms
121,704 KB
testcase_36 AC 598 ms
126,308 KB
testcase_37 AC 576 ms
131,624 KB
testcase_38 AC 653 ms
140,032 KB
testcase_39 AC 632 ms
144,896 KB
testcase_40 AC 647 ms
150,016 KB
testcase_41 AC 662 ms
156,928 KB
testcase_42 AC 659 ms
163,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
N=int(input())
edge=[[] for _ in range(N)]
for _ in range(N-1):
    a,b=map(int,input().split())
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)
M=int(input())
count=[False]*N
vtoinfect=[0]*(N)
V=list(map(int,input().split()))
V=set(V)
for v in V:
    count[v-1]+=1
    for e in edge[v-1]:
        count[e]+=1
for v in V:
    for e in edge[v-1]:
        if count[e]==1:
            vtoinfect[v-1]+=1
ans_one=N-count.count(0)
is_obake=[int(i+1 in V) for i in range(N)]
for i in range(N):
    sub=0
    if count[i]>0:
        sub+=1
    for e in edge[i]:
        if count[e]>0 and count[e]-is_obake[i]-is_obake[e]==0:
            sub+=1
        if is_obake[e]==1:
            sub+=vtoinfect[e]-int(count[i]==1)
    print(ans_one-sub)
0