結果

問題 No.1244 Black Segment
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-24 16:54:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 107,484 KB
最終ジャッジ日時 2024-09-24 17:46:03
合計ジャッジ時間 11,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,080 KB
testcase_01 AC 40 ms
53,200 KB
testcase_02 AC 40 ms
53,664 KB
testcase_03 AC 39 ms
53,224 KB
testcase_04 AC 39 ms
53,368 KB
testcase_05 AC 40 ms
53,248 KB
testcase_06 AC 40 ms
54,076 KB
testcase_07 AC 40 ms
53,428 KB
testcase_08 AC 40 ms
53,892 KB
testcase_09 AC 39 ms
53,496 KB
testcase_10 AC 40 ms
53,332 KB
testcase_11 AC 40 ms
53,880 KB
testcase_12 AC 40 ms
54,260 KB
testcase_13 AC 122 ms
78,232 KB
testcase_14 AC 223 ms
90,108 KB
testcase_15 AC 121 ms
77,884 KB
testcase_16 AC 215 ms
89,928 KB
testcase_17 AC 110 ms
77,660 KB
testcase_18 AC 306 ms
93,748 KB
testcase_19 AC 539 ms
102,284 KB
testcase_20 AC 497 ms
102,184 KB
testcase_21 AC 295 ms
99,652 KB
testcase_22 AC 489 ms
101,924 KB
testcase_23 AC 491 ms
102,160 KB
testcase_24 AC 391 ms
100,504 KB
testcase_25 AC 412 ms
101,780 KB
testcase_26 AC 331 ms
98,748 KB
testcase_27 AC 230 ms
99,436 KB
testcase_28 AC 428 ms
102,464 KB
testcase_29 AC 328 ms
99,876 KB
testcase_30 AC 378 ms
101,028 KB
testcase_31 AC 320 ms
100,256 KB
testcase_32 AC 328 ms
100,748 KB
testcase_33 AC 328 ms
100,200 KB
testcase_34 AC 331 ms
100,940 KB
testcase_35 AC 374 ms
105,868 KB
testcase_36 AC 385 ms
104,016 KB
testcase_37 AC 499 ms
107,484 KB
testcase_38 AC 341 ms
101,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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