結果
問題 | No.2301 Namorientation |
ユーザー | sasa8uyauya |
提出日時 | 2024-09-13 16:38:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 707 bytes |
コンパイル時間 | 383 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 548,768 KB |
最終ジャッジ日時 | 2024-09-13 16:38:19 |
合計ジャッジ時間 | 7,510 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
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: if s>t: ans[d[(t,s)]]="<-" q+=[t] print(*ans,sep="\n")