結果

問題 No.2301 Namorientation
ユーザー 👑 rin204rin204
提出日時 2024-03-16 16:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 775 ms / 3,000 ms
コード長 1,170 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 155,640 KB
最終ジャッジ日時 2024-09-30 04:05:02
合計ジャッジ時間 19,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,096 KB
testcase_01 AC 39 ms
52,776 KB
testcase_02 AC 34 ms
53,248 KB
testcase_03 AC 36 ms
54,300 KB
testcase_04 AC 37 ms
53,596 KB
testcase_05 AC 36 ms
52,332 KB
testcase_06 AC 35 ms
52,832 KB
testcase_07 AC 35 ms
52,432 KB
testcase_08 AC 34 ms
53,228 KB
testcase_09 AC 35 ms
52,552 KB
testcase_10 AC 36 ms
53,540 KB
testcase_11 AC 35 ms
52,476 KB
testcase_12 AC 414 ms
111,312 KB
testcase_13 AC 379 ms
108,692 KB
testcase_14 AC 743 ms
142,220 KB
testcase_15 AC 474 ms
118,244 KB
testcase_16 AC 651 ms
129,780 KB
testcase_17 AC 467 ms
112,048 KB
testcase_18 AC 671 ms
128,948 KB
testcase_19 AC 357 ms
106,824 KB
testcase_20 AC 643 ms
130,304 KB
testcase_21 AC 478 ms
117,496 KB
testcase_22 AC 389 ms
146,976 KB
testcase_23 AC 388 ms
147,036 KB
testcase_24 AC 333 ms
131,168 KB
testcase_25 AC 309 ms
133,520 KB
testcase_26 AC 401 ms
155,640 KB
testcase_27 AC 751 ms
141,120 KB
testcase_28 AC 746 ms
140,988 KB
testcase_29 AC 762 ms
141,108 KB
testcase_30 AC 775 ms
141,204 KB
testcase_31 AC 772 ms
141,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
deg = [0] * n
edges = [[] for _ in range(n)]
E = {}
for i in range(n):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    E[(u, v)] = i
    edges[u].append(v)
    edges[v].append(u)
    deg[u] += 1
    deg[v] += 1

ans = [""] * n
st = []
for i in range(n):
    if deg[i] == 1:
        st.append(i)

while st:
    pos = st.pop()
    for npos in edges[pos]:
        if deg[npos] == 0:
            continue

        if (pos, npos) in E:
            ans[E[(pos, npos)]] = "->"
        else:
            ans[E[(npos, pos)]] = "<-"

        deg[pos] -= 1
        deg[npos] -= 1

        if deg[npos] == 1:
            st.append(npos)

u = -1
for i in range(n):
    if deg[i] > 0:
        u = i
        deg[i] -= 1
        break

cycle = [u]
while 1:
    for v in edges[u]:
        if deg[v] > 0:
            cycle.append(v)
            deg[u] -= 1
            deg[v] -= 1
            u = v
            break
    else:
        break

for i in range(len(cycle)):
    pos = cycle[i]
    npos = cycle[(i + 1) % len(cycle)]
    if (pos, npos) in E:
        ans[E[(pos, npos)]] = "->"
    else:
        ans[E[(npos, pos)]] = "<-"

print(*ans, sep="\n")
0