結果

問題 No.1244 Black Segment
ユーザー 👑 tute7627tute7627
提出日時 2020-02-11 12:27:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 676 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 94,580 KB
最終ジャッジ日時 2024-10-08 11:14:33
合計ジャッジ時間 11,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,564 KB
testcase_01 AC 61 ms
68,032 KB
testcase_02 AC 63 ms
67,156 KB
testcase_03 AC 64 ms
68,408 KB
testcase_04 AC 72 ms
69,044 KB
testcase_05 AC 69 ms
68,084 KB
testcase_06 AC 69 ms
66,936 KB
testcase_07 AC 64 ms
68,940 KB
testcase_08 AC 63 ms
68,852 KB
testcase_09 AC 62 ms
67,876 KB
testcase_10 AC 64 ms
67,688 KB
testcase_11 AC 62 ms
68,288 KB
testcase_12 AC 62 ms
68,660 KB
testcase_13 AC 134 ms
79,876 KB
testcase_14 AC 330 ms
89,172 KB
testcase_15 AC 129 ms
80,104 KB
testcase_16 AC 304 ms
87,428 KB
testcase_17 AC 118 ms
79,108 KB
testcase_18 AC 294 ms
89,236 KB
testcase_19 AC 349 ms
92,092 KB
testcase_20 AC 346 ms
91,332 KB
testcase_21 AC 240 ms
90,256 KB
testcase_22 AC 370 ms
90,816 KB
testcase_23 AC 404 ms
92,392 KB
testcase_24 AC 384 ms
90,724 KB
testcase_25 AC 374 ms
90,792 KB
testcase_26 AC 386 ms
90,908 KB
testcase_27 AC 384 ms
91,912 KB
testcase_28 AC 379 ms
91,944 KB
testcase_29 AC 337 ms
90,964 KB
testcase_30 AC 360 ms
91,220 KB
testcase_31 AC 353 ms
90,760 KB
testcase_32 AC 361 ms
91,480 KB
testcase_33 AC 367 ms
90,740 KB
testcase_34 AC 301 ms
94,580 KB
testcase_35 AC 235 ms
89,404 KB
testcase_36 AC 343 ms
91,020 KB
testcase_37 AC 383 ms
93,832 KB
testcase_38 AC 389 ms
92,316 KB
権限があれば一括ダウンロードができます

ソースコード

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