結果

問題 No.1244 Black Segment
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-24 16:59:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 116,676 KB
最終ジャッジ日時 2024-09-24 17:49:33
合計ジャッジ時間 7,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,664 KB
testcase_01 AC 44 ms
54,932 KB
testcase_02 AC 43 ms
54,256 KB
testcase_03 AC 43 ms
55,180 KB
testcase_04 AC 43 ms
54,324 KB
testcase_05 AC 42 ms
54,236 KB
testcase_06 AC 42 ms
54,540 KB
testcase_07 AC 41 ms
54,716 KB
testcase_08 AC 42 ms
53,816 KB
testcase_09 AC 42 ms
54,436 KB
testcase_10 AC 41 ms
55,372 KB
testcase_11 AC 42 ms
54,984 KB
testcase_12 AC 43 ms
53,948 KB
testcase_13 AC 102 ms
77,648 KB
testcase_14 AC 195 ms
87,660 KB
testcase_15 AC 100 ms
77,352 KB
testcase_16 AC 177 ms
86,988 KB
testcase_17 AC 87 ms
77,176 KB
testcase_18 AC 211 ms
105,192 KB
testcase_19 AC 235 ms
98,132 KB
testcase_20 AC 235 ms
104,800 KB
testcase_21 AC 192 ms
93,548 KB
testcase_22 AC 245 ms
104,728 KB
testcase_23 AC 273 ms
108,272 KB
testcase_24 AC 263 ms
108,944 KB
testcase_25 AC 228 ms
104,500 KB
testcase_26 AC 253 ms
108,652 KB
testcase_27 AC 265 ms
116,676 KB
testcase_28 AC 256 ms
105,404 KB
testcase_29 AC 258 ms
109,288 KB
testcase_30 AC 255 ms
103,772 KB
testcase_31 AC 266 ms
105,640 KB
testcase_32 AC 275 ms
105,756 KB
testcase_33 AC 270 ms
105,424 KB
testcase_34 AC 164 ms
88,984 KB
testcase_35 AC 163 ms
90,184 KB
testcase_36 AC 216 ms
106,012 KB
testcase_37 AC 260 ms
112,084 KB
testcase_38 AC 232 ms
105,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,a,b=map(int,input().split())
lr=[list(map(int,input().split())) for _ in range(m)]
g=[set() for _ in range(n+2)]
for l,r in lr:
  r+=1
  l=max(l,a)
  l=min(b+1,l)
  r=max(r,a)
  r=min(b+1,r)
  g[l].add(r)
  g[r].add(l)
inf=float('inf')
seen=[inf]*(n+2)
ans=inf
from collections import deque
todo=deque([a])
seen[a]=0
while todo:
  v=todo.popleft()
  if v>b:
    ans=min(ans,seen[v])
    continue
  nc=seen[v]+1
  for nv in g[v]:
    if seen[nv]>nc:
      seen[nv]=nc
      todo.append(nv)
print(-1 if ans==inf else ans)
0