結果

問題 No.1817 Reversed Edges
ユーザー ygd.ygd.
提出日時 2022-01-21 22:03:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 1,349 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-05-04 12:59:33
合計ジャッジ時間 9,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 417 ms
31,744 KB
testcase_08 AC 203 ms
21,120 KB
testcase_09 AC 423 ms
30,848 KB
testcase_10 AC 242 ms
22,400 KB
testcase_11 AC 304 ms
25,728 KB
testcase_12 AC 504 ms
34,688 KB
testcase_13 AC 497 ms
34,816 KB
testcase_14 AC 540 ms
34,688 KB
testcase_15 AC 498 ms
34,816 KB
testcase_16 AC 499 ms
34,688 KB
testcase_17 AC 498 ms
34,688 KB
testcase_18 AC 478 ms
34,816 KB
testcase_19 AC 497 ms
34,688 KB
testcase_20 AC 489 ms
34,688 KB
testcase_21 AC 481 ms
34,560 KB
testcase_22 AC 387 ms
29,260 KB
testcase_23 AC 379 ms
29,008 KB
testcase_24 AC 406 ms
34,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
#input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


def main():
    N = int(input())
    G = [[] for _ in range(N)]
    for i in range(N-1):
        a,b = map(int,input().split())
        a -= 1; b -= 1
        G[a].append(b)
        G[b].append(a)
    
    ans = [-1]*N
    start = 0
    stack = [0]
    par = [-1]*N
    while stack:
        v = stack.pop()
        for u in G[v]:
            if par[v] == u: continue
            par[u] = v
            #print(u,v)
            if u < v:
                start += 1
            stack.append(u)
    ans[0] = start
    stack = [0]
    while stack:
        v = stack.pop()
        for u in G[v]:
            if par[v] == u: continue
            par[u] = v
            if u > v:
                ans[u] = ans[v] + 1
            else:
                ans[u] = ans[v] - 1
            stack.append(u)
    print(*ans,sep="\n")
    

if __name__ == '__main__':
    main()
0