結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 42 ms
52,224 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 103 ms
76,928 KB
testcase_14 AC 192 ms
90,112 KB
testcase_15 AC 103 ms
77,056 KB
testcase_16 AC 192 ms
94,848 KB
testcase_17 AC 96 ms
76,800 KB
testcase_18 AC 181 ms
88,768 KB
testcase_19 AC 191 ms
89,856 KB
testcase_20 AC 247 ms
93,152 KB
testcase_21 AC 213 ms
91,976 KB
testcase_22 AC 225 ms
93,136 KB
testcase_23 AC 226 ms
93,056 KB
testcase_24 AC 256 ms
102,144 KB
testcase_25 AC 220 ms
94,080 KB
testcase_26 AC 233 ms
92,952 KB
testcase_27 AC 243 ms
98,560 KB
testcase_28 AC 247 ms
97,664 KB
testcase_29 AC 250 ms
102,656 KB
testcase_30 AC 242 ms
98,304 KB
testcase_31 AC 252 ms
96,128 KB
testcase_32 AC 258 ms
96,768 KB
testcase_33 AC 255 ms
95,744 KB
testcase_34 AC 183 ms
99,968 KB
testcase_35 AC 183 ms
99,072 KB
testcase_36 AC 223 ms
100,736 KB
testcase_37 AC 223 ms
99,712 KB
testcase_38 AC 200 ms
91,904 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