結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 36 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 324 ms
139,904 KB
testcase_23 AC 306 ms
138,624 KB
testcase_24 AC 271 ms
128,384 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]
par = [-1] * N
seen = [0] * N
while stack:
    u = stack.pop()
    for v, i, a in G[u]:
        if (u, v) in S:
            continue
        if par[u] == v:
            continue
        if seen[v] and v != s:
            continue
        par[v] = u
        ans[i] = a
        seen[v] = 1
        stack.append(v)
        break
        
for i in range(N):
    print("<-") if ans[i] else print("->")
0