結果

問題 No.2301 Namorientation
ユーザー ニックネームニックネーム
提出日時 2023-05-12 21:58:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 112,760 KB
最終ジャッジ日時 2024-05-06 11:52:22
合計ジャッジ時間 31,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 27 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 923 ms
71,500 KB
testcase_13 AC 816 ms
65,728 KB
testcase_14 AC 1,527 ms
111,484 KB
testcase_15 AC 1,041 ms
78,272 KB
testcase_16 AC 1,325 ms
97,884 KB
testcase_17 AC 963 ms
73,772 KB
testcase_18 AC 1,364 ms
98,596 KB
testcase_19 AC 755 ms
63,212 KB
testcase_20 AC 1,338 ms
97,712 KB
testcase_21 AC 1,021 ms
77,024 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 999 ms
85,796 KB
testcase_26 AC 1,289 ms
111,092 KB
testcase_27 AC 1,594 ms
111,796 KB
testcase_28 AC 1,550 ms
112,616 KB
testcase_29 AC 1,544 ms
112,760 KB
testcase_30 AC 1,544 ms
111,784 KB
testcase_31 AC 1,534 ms
111,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
adj = [set() for _ in range(n)]
ans = [""]*n
for i in range(n):
    a,b = map(int,input().split())
    adj[a-1].add((b-1,i,0))
    adj[b-1].add((a-1,i,1))
v = []
for i in range(n):
    if len(adj[i])==1: v.append(i)
while v:
    p = v.pop()
    c,i,f = adj[p].pop()
    ans[i] = "<-" if f else "->"
    adj[c].remove((p,i,f^1))
    if len(adj[c])==1: v.append(c)
    if not v:
        for i in range(n):
            if adj[i]: v.append(i); break
print(*ans,sep="\n")
0