結果

問題 No.2301 Namorientation
ユーザー flygonflygon
提出日時 2023-05-12 21:55:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 3,000 ms
コード長 1,282 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 343,324 KB
最終ジャッジ日時 2024-11-28 18:06:57
合計ジャッジ時間 20,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,740 KB
testcase_01 AC 44 ms
55,668 KB
testcase_02 AC 44 ms
56,328 KB
testcase_03 AC 43 ms
55,320 KB
testcase_04 AC 44 ms
55,376 KB
testcase_05 AC 44 ms
55,164 KB
testcase_06 AC 43 ms
55,000 KB
testcase_07 AC 44 ms
55,796 KB
testcase_08 AC 43 ms
55,212 KB
testcase_09 AC 43 ms
54,820 KB
testcase_10 AC 43 ms
55,196 KB
testcase_11 AC 43 ms
55,668 KB
testcase_12 AC 463 ms
156,432 KB
testcase_13 AC 411 ms
138,056 KB
testcase_14 AC 765 ms
177,428 KB
testcase_15 AC 512 ms
143,460 KB
testcase_16 AC 645 ms
162,640 KB
testcase_17 AC 486 ms
157,552 KB
testcase_18 AC 658 ms
166,520 KB
testcase_19 AC 391 ms
125,816 KB
testcase_20 AC 649 ms
166,084 KB
testcase_21 AC 502 ms
144,856 KB
testcase_22 AC 734 ms
343,324 KB
testcase_23 AC 715 ms
341,308 KB
testcase_24 AC 598 ms
291,064 KB
testcase_25 AC 344 ms
166,520 KB
testcase_26 AC 427 ms
181,540 KB
testcase_27 AC 760 ms
177,320 KB
testcase_28 AC 758 ms
177,640 KB
testcase_29 AC 779 ms
177,424 KB
testcase_30 AC 783 ms
178,456 KB
testcase_31 AC 768 ms
177,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n = int(input())
graph = [[] for i in range(n+1)]
deg = [0]*(n+1)
e = []
for i in range(n):
    a,b = map(int,input().split())
    graph[a].append(b)
    graph[b].append(a)
    deg[a] += 1
    deg[b] += 1
    e.append((a,b))

que = []
use = set()
ans = []
for  i in range(1,n+1):
    if deg[i] == 1:
        que.append(i)
    
while que:
    crr = que.pop()
    use.add(crr)
    for nxt in graph[crr]:
        if nxt in use: continue
        ans.append([crr, nxt])
        deg[nxt] -= 1
        if deg[nxt] == 1:
            que.append(nxt)

v = [0]*(n+1)
for i in range(1,n+1):
    if i in use:
        v[i] = 1
ord = []
def dfs(crr):
    v[crr] = 1
    ord.append(crr)
    for nxt in graph[crr]:
        if v[nxt]: continue
        dfs(nxt)
for i in range(1,n+1):
    if i not in use:
        dfs(i)
        break

for i in range(len(ord)):
    ans.append([ord[i], ord[i-1]])

ans = set([(a,b) for a,b in ans ])
for a,b in e:
    if (a,b) in ans:
        print("->")
    else:
        print("<-")
0