結果

問題 No.2301 Namorientation
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-12 22:24:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 851 ms / 3,000 ms
コード長 1,068 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 172,928 KB
最終ジャッジ日時 2024-05-06 12:27:36
合計ジャッジ時間 21,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 535 ms
125,952 KB
testcase_13 AC 493 ms
120,704 KB
testcase_14 AC 841 ms
158,720 KB
testcase_15 AC 585 ms
130,688 KB
testcase_16 AC 755 ms
146,944 KB
testcase_17 AC 554 ms
126,848 KB
testcase_18 AC 764 ms
147,840 KB
testcase_19 AC 462 ms
119,168 KB
testcase_20 AC 721 ms
147,328 KB
testcase_21 AC 573 ms
129,920 KB
testcase_22 AC 386 ms
154,112 KB
testcase_23 AC 386 ms
152,576 KB
testcase_24 AC 347 ms
140,032 KB
testcase_25 AC 362 ms
150,672 KB
testcase_26 AC 414 ms
172,928 KB
testcase_27 AC 840 ms
158,464 KB
testcase_28 AC 830 ms
158,208 KB
testcase_29 AC 841 ms
158,336 KB
testcase_30 AC 851 ms
158,304 KB
testcase_31 AC 837 ms
158,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
edges = [[int(x)-1 for x in input().split()] for i in range(n)]
e = [[] for i in range(n)]
for ind,(a,b) in enumerate(edges):
    e[a].append([b,ind])
    e[b].append([a,ind])


ans = [-1]*n

num = [0]*n
for a,b in edges:
    num[a] += 1
    num[b] += 1

q = []
vis = [0]*n
for i in range(n):
    if num[i] == 1:
        q.append(i)

while q:
    now = q.pop()
    vis[now] = 1
    for nex,ind in e[now]:
        if ans[ind] != -1:
            continue
        num[nex] -= 1
        if edges[ind][0] == now:
            ans[ind] = 0
        else:
            ans[ind] = 1
        if num[nex] == 1:
            q.append(nex)

is_cycle = [0]*n
for i in range(n):
    if vis[i] == 0:
        q = [i]
        is_cycle[i] = 1
        break

while q:
    now = q.pop()
    for nex,ind in e[now]:
        if ans[ind] != -1:
            continue
        if edges[ind][0] == now:
            ans[ind] = 0
        else:
            ans[ind] = 1
        
        vis[nex] = 1
        q.append(nex)
        break





for i in ans:
    print("<-" if i else "->")
0