結果

問題 No.1244 Black Segment
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-10-02 22:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,288 KB
最終ジャッジ日時 2024-07-17 21:53:04
合計ジャッジ時間 6,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,768 KB
testcase_01 AC 52 ms
64,768 KB
testcase_02 AC 50 ms
65,024 KB
testcase_03 AC 52 ms
65,024 KB
testcase_04 AC 52 ms
64,768 KB
testcase_05 AC 52 ms
64,512 KB
testcase_06 AC 53 ms
65,024 KB
testcase_07 AC 52 ms
64,512 KB
testcase_08 AC 51 ms
64,512 KB
testcase_09 AC 50 ms
64,240 KB
testcase_10 AC 50 ms
64,896 KB
testcase_11 AC 48 ms
64,512 KB
testcase_12 AC 52 ms
65,152 KB
testcase_13 AC 72 ms
76,032 KB
testcase_14 AC 116 ms
84,724 KB
testcase_15 AC 71 ms
74,968 KB
testcase_16 AC 120 ms
84,608 KB
testcase_17 AC 70 ms
73,856 KB
testcase_18 AC 159 ms
86,216 KB
testcase_19 AC 185 ms
86,852 KB
testcase_20 AC 184 ms
88,448 KB
testcase_21 AC 157 ms
87,424 KB
testcase_22 AC 199 ms
88,256 KB
testcase_23 AC 199 ms
88,440 KB
testcase_24 AC 186 ms
88,572 KB
testcase_25 AC 189 ms
88,448 KB
testcase_26 AC 174 ms
88,704 KB
testcase_27 AC 181 ms
89,072 KB
testcase_28 AC 191 ms
88,916 KB
testcase_29 AC 179 ms
88,612 KB
testcase_30 AC 186 ms
88,448 KB
testcase_31 AC 189 ms
88,704 KB
testcase_32 AC 197 ms
89,080 KB
testcase_33 AC 192 ms
88,576 KB
testcase_34 AC 205 ms
88,972 KB
testcase_35 AC 174 ms
90,288 KB
testcase_36 AC 191 ms
89,452 KB
testcase_37 AC 192 ms
89,776 KB
testcase_38 AC 190 ms
89,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/1244

ダイクストラ
右に進む = 黒に塗る
左に進む = 白で塗りなおす
で解けるはず

"""

from sys import stdin
import sys
from collections import deque

N,M,A,B = map(int,stdin.readline().split())

lis = [ [] for i in range(10**5+10) ]

for i in range(M):

    l,r = map(int,stdin.readline().split())
    lis[l].append(r+1)
    lis[r+1].append(l)

d = [float("inf")] * (10**5+10)

q = deque([])
for i in range(A+1):
    if len(lis[i]) > 0:
        q.append(i)
        d[i] = 0

while len(q):

    now = q.popleft()

    for nex in lis[now]:
        if d[nex] > d[now] + 1:
            d[nex] = d[now] + 1
            q.append(nex)

ans = min(d[B+1:])

if ans == float("inf"):
    print (-1)
else:
    print (ans)
0