結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 224 ms
89,472 KB
testcase_08 AC 142 ms
82,816 KB
testcase_09 AC 208 ms
88,400 KB
testcase_10 AC 152 ms
83,584 KB
testcase_11 AC 175 ms
85,484 KB
testcase_12 AC 249 ms
91,068 KB
testcase_13 AC 246 ms
91,408 KB
testcase_14 AC 257 ms
90,916 KB
testcase_15 AC 250 ms
91,148 KB
testcase_16 AC 248 ms
91,252 KB
testcase_17 AC 248 ms
90,772 KB
testcase_18 AC 240 ms
91,260 KB
testcase_19 AC 252 ms
91,136 KB
testcase_20 AC 260 ms
91,284 KB
testcase_21 AC 249 ms
90,924 KB
testcase_22 AC 146 ms
105,536 KB
testcase_23 AC 142 ms
101,668 KB
testcase_24 AC 155 ms
103,508 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