結果

問題 No.1244 Black Segment
ユーザー 👑 rin204rin204
提出日時 2022-07-06 06:53:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-05-10 03:44:09
合計ジャッジ時間 7,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 46 ms
54,272 KB
testcase_03 AC 45 ms
54,144 KB
testcase_04 AC 45 ms
53,632 KB
testcase_05 WA -
testcase_06 AC 47 ms
53,632 KB
testcase_07 WA -
testcase_08 AC 46 ms
53,888 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 WA -
testcase_11 AC 46 ms
54,144 KB
testcase_12 AC 46 ms
54,016 KB
testcase_13 AC 103 ms
77,440 KB
testcase_14 AC 159 ms
78,320 KB
testcase_15 WA -
testcase_16 AC 144 ms
77,568 KB
testcase_17 AC 83 ms
71,936 KB
testcase_18 AC 51 ms
60,672 KB
testcase_19 AC 51 ms
60,032 KB
testcase_20 AC 203 ms
83,072 KB
testcase_21 AC 179 ms
83,068 KB
testcase_22 AC 207 ms
83,544 KB
testcase_23 WA -
testcase_24 AC 216 ms
84,048 KB
testcase_25 AC 196 ms
83,072 KB
testcase_26 AC 211 ms
85,632 KB
testcase_27 WA -
testcase_28 AC 216 ms
84,864 KB
testcase_29 AC 221 ms
86,584 KB
testcase_30 AC 205 ms
83,456 KB
testcase_31 AC 225 ms
86,052 KB
testcase_32 AC 236 ms
86,528 KB
testcase_33 AC 229 ms
85,888 KB
testcase_34 AC 46 ms
53,888 KB
testcase_35 AC 134 ms
76,560 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 52 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m, a, b = map(int, input().split())
n = b - a + 2
edges = [[] for _ in range(n)]
for _ in range(m):
    l, r = map(int, input().split())
    if l <= a and b <= r:
        print(1)
        exit()
    elif r <= a or b <= l:
        pass
    else:
        l = max(l, a) - a
        r = min(r, b) - a + 1
        edges[l].append(r)
        edges[r].append(l)
        
queue = deque()
queue.append(0)
dist = [-1] * n
dist[0] = 0
while queue:
    pos = queue.popleft()
    for npos in edges[pos]:
        if dist[npos] != -1:
            continue
        dist[npos] = dist[pos] + 1
        queue.append(npos)
print(dist[-1])
        
0