結果

問題 No.1582 Vertexes vs Edges
ユーザー titiatitia
提出日時 2021-07-02 23:12:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 759 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-06-29 13:01:14
合計ジャッジ時間 6,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 34 ms
11,264 KB
testcase_05 AC 239 ms
28,160 KB
testcase_06 AC 35 ms
11,520 KB
testcase_07 AC 55 ms
13,184 KB
testcase_08 AC 130 ms
19,328 KB
testcase_09 AC 225 ms
27,136 KB
testcase_10 AC 152 ms
21,120 KB
testcase_11 AC 39 ms
11,776 KB
testcase_12 RE -
testcase_13 AC 165 ms
22,016 KB
testcase_14 RE -
testcase_15 AC 230 ms
26,112 KB
testcase_16 AC 123 ms
18,176 KB
testcase_17 AC 174 ms
21,248 KB
testcase_18 AC 276 ms
29,696 KB
testcase_19 RE -
testcase_20 AC 159 ms
20,736 KB
testcase_21 RE -
testcase_22 AC 238 ms
27,264 KB
testcase_23 AC 101 ms
16,512 KB
testcase_24 AC 62 ms
13,440 KB
testcase_25 RE -
testcase_26 AC 113 ms
17,280 KB
testcase_27 AC 227 ms
25,728 KB
testcase_28 AC 88 ms
15,360 KB
testcase_29 AC 196 ms
23,424 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 101 ms
16,256 KB
testcase_33 AC 305 ms
30,464 KB
testcase_34 AC 306 ms
30,464 KB
testcase_35 AC 304 ms
30,464 KB
testcase_36 AC 25 ms
10,624 KB
testcase_37 AC 25 ms
10,624 KB
testcase_38 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

N+=1 # ROOTの親の点を一つ余計に見るため、総ノード数を一つ増やしておく
ROOT=0

QUE=[ROOT] 
Parent=[-1]*(N+1)
Parent[ROOT]=N # ROOTの親を定めておく.
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            QUE.append(to)

USE=[0]*N
ANS=0

for x in TOP_SORT[::-1]:
    if USE[x]==0:
        USE[Parent[x]]=2
    elif USE[x]==2:
        ANS+=1

print(ANS)
0