結果

問題 No.1244 Black Segment
ユーザー ntudantuda
提出日時 2021-11-09 22:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-11-19 03:50:43
合計ジャッジ時間 7,396 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 92 ms
77,184 KB
testcase_14 AC 183 ms
90,368 KB
testcase_15 AC 93 ms
77,440 KB
testcase_16 AC 181 ms
94,848 KB
testcase_17 AC 85 ms
76,672 KB
testcase_18 AC 160 ms
88,832 KB
testcase_19 AC 179 ms
89,708 KB
testcase_20 AC 216 ms
93,152 KB
testcase_21 AC 188 ms
91,876 KB
testcase_22 AC 212 ms
92,884 KB
testcase_23 AC 214 ms
93,184 KB
testcase_24 AC 243 ms
102,144 KB
testcase_25 AC 212 ms
94,464 KB
testcase_26 AC 225 ms
92,884 KB
testcase_27 AC 237 ms
98,652 KB
testcase_28 AC 239 ms
97,920 KB
testcase_29 AC 246 ms
102,656 KB
testcase_30 AC 235 ms
98,304 KB
testcase_31 AC 244 ms
96,128 KB
testcase_32 AC 253 ms
96,896 KB
testcase_33 AC 245 ms
95,744 KB
testcase_34 AC 176 ms
100,064 KB
testcase_35 AC 174 ms
98,816 KB
testcase_36 AC 213 ms
100,864 KB
testcase_37 AC 211 ms
99,968 KB
testcase_38 AC 186 ms
92,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N,M,A,B = map(int,input().split())
LR = [list(map(int,input().split())) for _ in range(M)]
E = [[] for _ in range(B - A + 2)]
N2 = B - A + 1
for i in range(M):
    l,r = LR[i]
    a = max(0,min(B-A+1,l-A))
    b = max(0,min(B-A+1,r-A+1))
    E[a].append((b))
    E[b].append((a))
#print(E)
q1 = {0}
q2 = set()
nvstd = [True] * (N2+1)
nvstd[0] = False
ans = 0
while q1:
    ans += 1
    while q1:
        frm = next(iter(q1))
        q1.remove(frm)
        for to in E[frm]:
            if to == N2:
                print(ans)
                sys.exit()

            if nvstd[to]:
                q2.add(to)
                nvstd[to] = False

    q1,q2 = q2,q1
    q2 = set()

print(-1)

0