結果

問題 No.1244 Black Segment
ユーザー tute7627
提出日時 2020-02-11 12:27:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,192 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,420 KB
最終ジャッジ日時 2024-10-08 11:13:49
合計ジャッジ時間 26,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue

n,m,a,b=map(int,input().split())
a-=1
g=[[] for i in range(n+1)]
for i in range(m):
    l,r=map(int,input().split())
    l-=1
    if l<a:l=a
    if r<a:r=a
    if l>b:l=b
    if r>b:r=b
    g[l].append(r)
    g[r].append(l)
que=queue.Queue()
que.put((a,0))
dist=[-1]*(n+1)
while(not que.empty()):
    p=que.get()
    if dist[p[0]]!=-1:continue
    dist[p[0]]=p[1]
    for to in g[p[0]]:
        que.put((to,p[1]+1))
print(dist[b])        
    
    
0