結果

問題 No.2301 Namorientation
ユーザー FromBooskaFromBooska
提出日時 2023-05-13 11:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,243 ms / 3,000 ms
コード長 3,224 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 330,316 KB
最終ジャッジ日時 2024-11-29 05:12:32
合計ジャッジ時間 27,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,236 KB
testcase_01 AC 44 ms
53,928 KB
testcase_02 AC 45 ms
55,100 KB
testcase_03 AC 45 ms
54,792 KB
testcase_04 AC 45 ms
54,000 KB
testcase_05 AC 49 ms
55,008 KB
testcase_06 AC 44 ms
54,452 KB
testcase_07 AC 44 ms
54,952 KB
testcase_08 AC 43 ms
55,032 KB
testcase_09 AC 45 ms
54,332 KB
testcase_10 AC 45 ms
55,004 KB
testcase_11 AC 45 ms
55,540 KB
testcase_12 AC 748 ms
117,984 KB
testcase_13 AC 682 ms
113,536 KB
testcase_14 AC 1,186 ms
149,592 KB
testcase_15 AC 846 ms
124,948 KB
testcase_16 AC 1,047 ms
135,600 KB
testcase_17 AC 771 ms
119,340 KB
testcase_18 AC 1,041 ms
136,660 KB
testcase_19 AC 657 ms
111,132 KB
testcase_20 AC 1,053 ms
135,556 KB
testcase_21 AC 824 ms
124,908 KB
testcase_22 AC 1,082 ms
330,316 KB
testcase_23 AC 1,053 ms
325,544 KB
testcase_24 AC 878 ms
277,976 KB
testcase_25 AC 440 ms
137,044 KB
testcase_26 AC 543 ms
166,536 KB
testcase_27 AC 1,165 ms
149,968 KB
testcase_28 AC 1,188 ms
150,256 KB
testcase_29 AC 1,180 ms
150,024 KB
testcase_30 AC 1,199 ms
149,876 KB
testcase_31 AC 1,243 ms
150,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N頂点N辺グラフは1閉路を含むので、閉路で1周、ひげは閉路向きとすればいい
# 昨日は実装失敗した、閉路上で方向を付けるときのスタート確定で失敗した
# 閉路確定したら、まず閉路内で方向を決めて
# それから、閉路からひげの先に向かうべきだった
# ひげの先から辿ると、閉路にたどり着く前の分岐で困ってしまう

N = int(input())
edge_dic = {}
edge_list = []
edges = [[] for i in range(N+1)]
degree = [0]*(N+1)
for i in range(N):
    a, b = map(int, input().split())
    edge_list.append((a, b))
    edge_dic[(a, b)] = i+1
    edges[a].append(b)
    edges[b].append(a)
    degree[a] += 1
    degree[b] += 1

degree1 = []
for i in range(1, N+1):
    if degree[i] == 1:
        degree1.append(i)

# まず閉路を確定させる
from collections import deque
que = deque()
for v in degree1:
    que.append((v, 0))
    degree[v] -= 1
while que:
    current, prev = que.popleft()
    #print('current', current, 'prev', prev, degree)
    for nxt in edges[current]:
        if nxt != prev:
            degree[nxt] -= 1
            if degree[nxt] == 1:
                que.append((nxt, current))
#print(degree)

circuit = []
for i in range(1, N+1):
    if degree[i] >= 2:
        circuit.append(i)

#print(circuit)

# ひげの先からやると、ひげの中の枝分かれでどっちに行くかという問題ができてしまう
# よって、閉路からひげの先に向かう方が確実だ
# そのためにはまず閉路上の方向を決めて、それから閉路からひげに向かおう

import sys
sys.setrecursionlimit(10**7)

def dfs1(current, prev):
    for nxt in edges[current]:
        if nxt != prev and nxt in circuit_set:
            if (nxt, current) in edge_dic:
                if ans_list[edge_dic[(nxt, current)]] == 0:
                    ans_list[edge_dic[(nxt, current)]] = -1
                    dfs1(nxt, current)
            elif (current, nxt) in edge_dic:
                if ans_list[edge_dic[(current, nxt)]] == 0:
                    ans_list[edge_dic[(current, nxt)]] = +1
                    dfs1(nxt, current)

circuit_set = set(circuit)
ans_list = [0]*(N+1)
dfs1(circuit[0], 0)

# 今度は閉路からひげに向かう

def dfs2(current, prev):
    for nxt in edges[current]:
        if nxt != prev and nxt not in circuit_set:
            #print('current', current, 'prev', prev, 'nxt', nxt)
            #print((nxt, current) in edge_dic,(current, nxt) in edge_dic )
            if (nxt, current) in edge_dic:
                if ans_list[edge_dic[(nxt, current)]] == 0:
                    ans_list[edge_dic[(nxt, current)]] = +1
                    dfs2(nxt, current)
            elif (current, nxt) in edge_dic:
                #print(ans_list[edge_dic[(current, nxt)]] == 0)
                if ans_list[edge_dic[(current, nxt)]] == 0:
                    ans_list[edge_dic[(current, nxt)]] = -1
                    dfs2(nxt, current)

for v in circuit_set:
    dfs2(v, 0)
    
#print(ans_list)

for i in range(1, N+1):
    if ans_list[i] == 1:
        print('->')
    elif ans_list[i] == -1:
        print('<-')
    else:
        print('not determined')

0