結果

問題 No.1244 Black Segment
ユーザー 👑 tute7627tute7627
提出日時 2020-02-11 12:27:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 AC 30 ms
11,136 KB
testcase_03 AC 34 ms
11,136 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 31 ms
11,136 KB
testcase_10 AC 32 ms
11,264 KB
testcase_11 AC 30 ms
11,136 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 63 ms
11,648 KB
testcase_14 AC 1,095 ms
27,004 KB
testcase_15 AC 67 ms
11,776 KB
testcase_16 AC 1,036 ms
24,192 KB
testcase_17 AC 52 ms
11,648 KB
testcase_18 AC 665 ms
25,088 KB
testcase_19 AC 1,012 ms
28,160 KB
testcase_20 AC 957 ms
26,880 KB
testcase_21 AC 537 ms
26,876 KB
testcase_22 AC 1,096 ms
26,788 KB
testcase_23 AC 1,154 ms
30,592 KB
testcase_24 AC 1,169 ms
29,488 KB
testcase_25 AC 1,097 ms
29,440 KB
testcase_26 AC 1,063 ms
30,720 KB
testcase_27 AC 1,190 ms
31,488 KB
testcase_28 AC 1,138 ms
29,440 KB
testcase_29 AC 926 ms
28,672 KB
testcase_30 AC 1,158 ms
31,616 KB
testcase_31 AC 932 ms
29,568 KB
testcase_32 AC 955 ms
29,952 KB
testcase_33 AC 972 ms
30,080 KB
testcase_34 AC 1,125 ms
34,560 KB
testcase_35 AC 763 ms
27,680 KB
testcase_36 AC 1,125 ms
30,872 KB
testcase_37 AC 1,192 ms
35,420 KB
testcase_38 AC 1,189 ms
32,256 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