結果

問題 No.2301 Namorientation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 16:42:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 787 ms / 3,000 ms
コード長 720 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 170,744 KB
最終ジャッジ日時 2024-09-13 16:42:23
合計ジャッジ時間 20,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 464 ms
116,984 KB
testcase_13 AC 456 ms
117,320 KB
testcase_14 AC 705 ms
151,184 KB
testcase_15 AC 511 ms
126,516 KB
testcase_16 AC 679 ms
139,276 KB
testcase_17 AC 489 ms
124,284 KB
testcase_18 AC 620 ms
142,520 KB
testcase_19 AC 412 ms
113,988 KB
testcase_20 AC 680 ms
139,636 KB
testcase_21 AC 496 ms
126,176 KB
testcase_22 AC 434 ms
166,848 KB
testcase_23 AC 403 ms
170,744 KB
testcase_24 AC 363 ms
146,796 KB
testcase_25 AC 340 ms
132,752 KB
testcase_26 AC 456 ms
156,892 KB
testcase_27 AC 738 ms
156,108 KB
testcase_28 AC 763 ms
156,324 KB
testcase_29 AC 774 ms
153,584 KB
testcase_30 AC 787 ms
154,292 KB
testcase_31 AC 755 ms
152,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=[[] for i in range(n)]
d={}
for i in range(n):
	a,b=map(int,input().split())
	a-=1
	b-=1
	e[a]+=[b]
	e[b]+=[a]
	d[(a,b)]=i
v=[0]*n
g=[0]*n
v[0]=1
q=[0]
o=[]
while len(q)>0:
  s=q[-1]
  while g[s]<len(e[s]):
    t=e[s][g[s]]
    if v[t]==0:
      break
    elif v[t]<v[s]-1:
      o=q[q.index(t):]
      break
    g[s]+=1
  if len(o)!=0:
    break
  if g[s]<len(e[s]):
    g[s]+=1
    v[t]=v[s]+1
    q+=[t]
  else:
    v[s]=0
    q.pop()
ans=["->"]*n
for i in range(len(o)):
  s=o[i-1]
  t=o[i]
  if s>t:
    ans[d[(t,s)]]="<-"
v=[0]*n
q=[]
for s in o:
  v[s]=1
  q+=[s]
for s in q:
  for t in e[s]:
    if v[t]==0:
      v[t]=1
      if s<t:
        ans[d[(s,t)]]="<-"
      q+=[t]
print(*ans,sep="\n")
0