結果

問題 No.1817 Reversed Edges
ユーザー shotoyooshotoyoo
提出日時 2022-01-21 21:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,573 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 105,752 KB
最終ジャッジ日時 2024-05-04 11:55:13
合計ジャッジ時間 5,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,176 KB
testcase_01 AC 36 ms
52,720 KB
testcase_02 AC 34 ms
53,500 KB
testcase_03 AC 33 ms
52,528 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 32 ms
52,132 KB
testcase_06 AC 32 ms
52,868 KB
testcase_07 AC 188 ms
89,300 KB
testcase_08 AC 123 ms
82,576 KB
testcase_09 AC 175 ms
88,720 KB
testcase_10 AC 132 ms
83,748 KB
testcase_11 AC 149 ms
85,352 KB
testcase_12 AC 199 ms
91,320 KB
testcase_13 AC 198 ms
91,364 KB
testcase_14 AC 205 ms
91,644 KB
testcase_15 AC 208 ms
91,140 KB
testcase_16 AC 229 ms
91,128 KB
testcase_17 AC 240 ms
91,268 KB
testcase_18 AC 255 ms
91,516 KB
testcase_19 AC 292 ms
91,304 KB
testcase_20 AC 265 ms
91,648 KB
testcase_21 AC 249 ms
91,268 KB
testcase_22 AC 148 ms
105,752 KB
testcase_23 AC 144 ms
102,160 KB
testcase_24 AC 150 ms
103,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO)
LI = lambda : list(map(int, input().split()))
# sys.setrecursionlimit(3*10**5+10)

### 木の読み込み yomikomi
n = int(input())
ns = [[] for _ in range(n)]
for _ in range(n-1):
    u,v = map(int, input().split())
    u -= 1
    v -= 1
    ns[u].append(v)
    ns[v].append(u)
    
# 深さ優先探索 (巻き戻しあり) dfs tree
q = [(0, -1)]
vs = [0]*n
while q:
    u,prv = q.pop()
    if u<0:
        # 返るときの処理
        u = ~u
        for v in ns[u]:
            if v==prv:
                continue
            pass
    else:
        q.append((~u,prv))
        for v in ns[u]:
            # 進むときの処理
            if v==prv:
                continue
            q.append((v,u))
            if u>v:
                vs[0] += 1
# 深さ優先探索 (巻き戻しあり) dfs tree
# print(vs)
q = [(0, -1)]
while q:
    u,prv = q.pop()
    if u<0:
        # 返るときの処理
        u = ~u
        for v in ns[u]:
            if v==prv:
                continue
            pass
    else:
        q.append((~u,prv))
        for v in ns[u]:
            # 進むときの処理
            if v==prv:
                continue
            q.append((v,u))
            if u>v:
                vs[v] = vs[u] - 1
            else:
                vs[v] = vs[u] + 1
write("\n".join(map(str, vs)))
0