結果

問題 No.1244 Black Segment
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-12 20:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-07-19 18:55:29
合計ジャッジ時間 7,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 43 ms
53,632 KB
testcase_06 AC 40 ms
53,248 KB
testcase_07 AC 39 ms
53,760 KB
testcase_08 AC 38 ms
53,632 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 39 ms
53,504 KB
testcase_11 AC 40 ms
53,632 KB
testcase_12 AC 39 ms
53,760 KB
testcase_13 AC 61 ms
68,096 KB
testcase_14 AC 123 ms
84,096 KB
testcase_15 AC 62 ms
68,224 KB
testcase_16 AC 121 ms
82,944 KB
testcase_17 AC 72 ms
69,248 KB
testcase_18 AC 149 ms
88,832 KB
testcase_19 AC 175 ms
92,288 KB
testcase_20 AC 173 ms
91,136 KB
testcase_21 AC 146 ms
90,752 KB
testcase_22 AC 173 ms
91,008 KB
testcase_23 AC 202 ms
90,624 KB
testcase_24 AC 195 ms
94,336 KB
testcase_25 AC 170 ms
91,904 KB
testcase_26 AC 170 ms
91,136 KB
testcase_27 AC 162 ms
91,776 KB
testcase_28 AC 184 ms
92,288 KB
testcase_29 AC 183 ms
91,392 KB
testcase_30 AC 193 ms
91,776 KB
testcase_31 AC 181 ms
91,392 KB
testcase_32 AC 192 ms
91,392 KB
testcase_33 AC 196 ms
90,880 KB
testcase_34 AC 225 ms
97,408 KB
testcase_35 AC 168 ms
94,336 KB
testcase_36 AC 186 ms
93,696 KB
testcase_37 AC 181 ms
93,696 KB
testcase_38 AC 199 ms
92,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**9

N, M, A, B = map(int, input().split())
source = 0
sink = N + 2
G = [[] for _ in range(N + 3)]
for _ in range(M):
    L, R = map(int, input().split())
    R += 1
    G[L].append((R, 1))
    G[R].append((L, 1))
for i in range(1, A + 1):
    G[source].append((i, 0))
for i in range(B + 1, N + 2):
    G[i].append((sink, 0))

d = [inf] * (N + 3)
d[source] = 0
q = deque([source])
while q:
    s = q.popleft()
    ds = d[s]
    for t, dt in G[s]:
        if d[t] >= inf:
            if dt == 0:
                d[t] = ds
                q.appendleft(t)
            else:
                d[t] = ds + dt
                q.append(t)

ans = d[sink]
if ans >= inf:
    ans = -1
print(ans)
0