結果

問題 No.2618 除霊
ユーザー titiatitia
提出日時 2024-02-04 03:19:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,279 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 65,116 KB
最終ジャッジ日時 2024-09-28 11:08:34
合計ジャッジ時間 46,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 1,141 ms
55,840 KB
testcase_07 AC 1,117 ms
55,628 KB
testcase_08 AC 1,226 ms
58,308 KB
testcase_09 AC 1,218 ms
59,080 KB
testcase_10 AC 1,253 ms
61,948 KB
testcase_11 AC 995 ms
54,824 KB
testcase_12 AC 1,220 ms
58,256 KB
testcase_13 AC 1,070 ms
55,552 KB
testcase_14 AC 1,125 ms
64,552 KB
testcase_15 AC 888 ms
55,168 KB
testcase_16 AC 902 ms
55,040 KB
testcase_17 AC 1,040 ms
60,332 KB
testcase_18 AC 1,081 ms
64,104 KB
testcase_19 AC 934 ms
56,448 KB
testcase_20 AC 896 ms
55,552 KB
testcase_21 AC 997 ms
58,344 KB
testcase_22 AC 1,102 ms
59,488 KB
testcase_23 AC 1,137 ms
56,448 KB
testcase_24 AC 1,097 ms
55,808 KB
testcase_25 AC 1,208 ms
60,296 KB
testcase_26 AC 1,147 ms
62,624 KB
testcase_27 AC 1,100 ms
55,680 KB
testcase_28 AC 1,122 ms
56,576 KB
testcase_29 AC 1,206 ms
60,260 KB
testcase_30 AC 1,182 ms
65,116 KB
testcase_31 AC 1,234 ms
58,704 KB
testcase_32 AC 1,014 ms
55,296 KB
testcase_33 AC 1,083 ms
56,064 KB
testcase_34 AC 1,091 ms
54,644 KB
testcase_35 AC 1,176 ms
56,692 KB
testcase_36 AC 1,220 ms
58,216 KB
testcase_37 AC 1,223 ms
57,612 KB
testcase_38 AC 1,261 ms
60,500 KB
testcase_39 AC 1,279 ms
60,572 KB
testcase_40 AC 1,259 ms
60,340 KB
testcase_41 AC 1,264 ms
62,124 KB
testcase_42 AC 1,262 ms
62,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
E=[[] for i in range(N)]

for i in range(N-1):
    a,b=map(int,input().split())
    a-=1
    b-=1
    E[a].append(b)
    E[b].append(a)

ANS=0

M=int(input())
V=list(map(int,input().split()))

for i in range(M):
    V[i]-=1

LIST=[0]*N
for v in V:
    LIST[v]=1

ANS=0
ANSLIST=[0]*N
X=[0]*N

for i in range(N):
    ji=0
    if LIST[i]==1:
        ji=1
        
    U=[]
    for to in E[i]:
        if LIST[to]==1:
            U.append(to)

    if ji==0 and U==[]:
        continue
    
    ANS+=1

    if ji==1:
        ANSLIST[i]-=1
        
        if U==[]:
            for to in E[i]:
                ANSLIST[to]-=1
                
        elif len(U)==1:
            k=U[0]
            ANSLIST[k]-=1

    else:
        if len(U)>=2:
            ANSLIST[i]-=1
        else:
            k=U[0]
            X[k]+=1

for i in range(N):
    if X[i]>0:
        ANSLIST[i]-=X[i]
        for to in E[i]:
            ANSLIST[to]-=X[i]

#print(ANS)
#print(ANSLIST)

for i in range(N):
    ANSLIST[i]+=ANS

for ans in ANSLIST:
    print(ans)
0