結果

問題 No.2301 Namorientation
ユーザー ニックネームニックネーム
提出日時 2023-05-12 22:00:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,584 ms / 3,000 ms
コード長 554 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,932 KB
最終ジャッジ日時 2024-05-06 11:58:04
合計ジャッジ時間 31,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 933 ms
72,380 KB
testcase_13 AC 820 ms
65,728 KB
testcase_14 AC 1,548 ms
111,356 KB
testcase_15 AC 1,038 ms
78,244 KB
testcase_16 AC 1,378 ms
96,976 KB
testcase_17 AC 969 ms
73,968 KB
testcase_18 AC 1,352 ms
98,816 KB
testcase_19 AC 766 ms
63,212 KB
testcase_20 AC 1,341 ms
97,840 KB
testcase_21 AC 1,019 ms
77,280 KB
testcase_22 AC 1,232 ms
102,272 KB
testcase_23 AC 1,171 ms
100,864 KB
testcase_24 AC 1,028 ms
86,016 KB
testcase_25 AC 984 ms
85,792 KB
testcase_26 AC 1,272 ms
111,088 KB
testcase_27 AC 1,553 ms
111,932 KB
testcase_28 AC 1,584 ms
111,888 KB
testcase_29 AC 1,565 ms
111,776 KB
testcase_30 AC 1,562 ms
111,676 KB
testcase_31 AC 1,536 ms
111,840 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)
if not v:
    for i in range(n):
        if adj[i]: v.append(i); break
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