結果

問題 No.2301 Namorientation
ユーザー rlangevinrlangevin
提出日時 2023-05-12 22:11:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 942 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 213,420 KB
最終ジャッジ日時 2024-05-06 12:14:18
合計ジャッジ時間 21,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 37 ms
51,968 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 446 ms
206,508 KB
testcase_23 AC 454 ms
197,356 KB
testcase_24 AC 385 ms
171,392 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for i in range(N)]
D = [0] * N
S = set()
for i in range(N):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append((v, i, 0))
    G[v].append((u, i, 1))
    D[u] += 1
    D[v] += 1
    
stack = []
for i in range(N):
    if D[i] == 1:
        stack.append(i)
    
ans = [-1] * N    
while stack:
    u = stack.pop()
    for v, i, a in G[u]:
        if (u, v) in S:
            continue
        ans[i] = a
        D[v] -= 1
        if D[v] == 1:
            stack.append(v)
        S.add((u, v))
        S.add((v, u))
            
s = -1
for i in range(N):
    if ans[i] == -1:
        s = i
        break
    
stack = [s]
while stack:
    u = stack.pop()
    for v, i, a in G[u]:
        if (u, v) in S:
            continue
        S.add((u, v))
        S.add((v, u))
        ans[i] = a
        stack.append(v)
        break
        
for i in range(N):
    print("<-") if ans[i] else print("->")
0