結果

問題 No.2301 Namorientation
ユーザー ああいいああいい
提出日時 2023-05-12 22:30:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,106 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 183,036 KB
最終ジャッジ日時 2024-05-06 12:34:24
合計ジャッジ時間 20,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 41 ms
51,968 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 480 ms
154,776 KB
testcase_23 AC 487 ms
157,892 KB
testcase_24 AC 408 ms
140,992 KB
testcase_25 AC 368 ms
145,012 KB
testcase_26 AC 474 ms
183,036 KB
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