結果

問題 No.2301 Namorientation
ユーザー ああいいああいい
提出日時 2023-05-12 22:31:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,122 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 188,836 KB
最終ジャッジ日時 2024-05-06 12:35:50
合計ジャッジ時間 15,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 35 ms
52,224 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 425 ms
154,564 KB
testcase_23 AC 409 ms
157,700 KB
testcase_24 AC 348 ms
140,984 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())
d = dict()
G = [[] for _ in range(N + 1)]
Gnum = [0] * N
for _ in range(N):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)
    d[(a,b)] = _
    Gnum[a] += 1
    Gnum[b] += 1

stack = []
for i in range(N):
    if Gnum[i] == 1:
        stack.append(i)
ans = [0] * N
right = "->"
left = "<-"

s = set()
while stack:
    now = stack.pop()
    s.add(now)
    for v in G[now]:
        Gnum[v] -= 1
        if Gnum[v] == 1:
            stack.append(v)
            if (now,v) in d:
                ans[d[(now,v)]] = right
            else:
                ans[d[(v,now)]] = left
t = -1
for i in range(N):
    if i not in s:
        t = i
if t == -1:
    pass
else:
    u = t
    #flag = True
    while True:
        #flag = False
        for v in G[u]:
            if v not in s:
                #flag = True
                if (u,v) in d:
                    ans[d[(u,v)]] = right
                else:
                    ans[d[(v,u)]] = left
                s.add(v)
                u = v
                break
        if u == t:break
for S in ans:
    print(S)
0