結果

問題 No.1244 Black Segment
ユーザー H3PO4H3PO4
提出日時 2023-02-19 15:02:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-07-20 15:29:03
合計ジャッジ時間 15,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 43 ms
11,392 KB
testcase_14 AC 400 ms
19,072 KB
testcase_15 AC 44 ms
11,136 KB
testcase_16 AC 409 ms
19,328 KB
testcase_17 AC 42 ms
11,520 KB
testcase_18 AC 350 ms
24,192 KB
testcase_19 AC 496 ms
26,496 KB
testcase_20 AC 523 ms
27,904 KB
testcase_21 AC 449 ms
28,032 KB
testcase_22 AC 523 ms
27,648 KB
testcase_23 AC 562 ms
28,032 KB
testcase_24 AC 567 ms
29,568 KB
testcase_25 AC 564 ms
29,568 KB
testcase_26 AC 530 ms
28,672 KB
testcase_27 AC 552 ms
31,360 KB
testcase_28 AC 573 ms
29,568 KB
testcase_29 AC 526 ms
29,312 KB
testcase_30 AC 566 ms
30,464 KB
testcase_31 AC 545 ms
30,464 KB
testcase_32 AC 537 ms
30,080 KB
testcase_33 AC 553 ms
30,848 KB
testcase_34 AC 636 ms
31,872 KB
testcase_35 AC 541 ms
31,616 KB
testcase_36 AC 576 ms
32,640 KB
testcase_37 AC 572 ms
30,592 KB
testcase_38 AC 594 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

q = deque([0])
INF = 10 ** 9
dist = [INF] * (N + 3)
dist[0] = 0
while q:
    v = q.popleft()
    dx = dist[v] + 1
    for x in G[v]:
        if dist[x] == INF:
            q.append(x)
            dist[x] = dx
print(-1 if dist[-1] == INF else dist[-1] - 2)
0