結果

問題 No.1244 Black Segment
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-24 16:46:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 700 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 109,824 KB
最終ジャッジ日時 2024-09-24 17:38:15
合計ジャッジ時間 12,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,164 KB
testcase_01 AC 38 ms
53,664 KB
testcase_02 AC 38 ms
53,756 KB
testcase_03 AC 37 ms
53,092 KB
testcase_04 AC 38 ms
53,500 KB
testcase_05 AC 39 ms
53,220 KB
testcase_06 AC 39 ms
53,944 KB
testcase_07 AC 39 ms
53,464 KB
testcase_08 AC 39 ms
53,956 KB
testcase_09 AC 39 ms
53,312 KB
testcase_10 AC 39 ms
54,236 KB
testcase_11 AC 40 ms
53,068 KB
testcase_12 AC 40 ms
53,940 KB
testcase_13 AC 114 ms
77,812 KB
testcase_14 AC 230 ms
89,724 KB
testcase_15 AC 117 ms
78,088 KB
testcase_16 AC 205 ms
89,732 KB
testcase_17 AC 82 ms
77,400 KB
testcase_18 AC 247 ms
93,732 KB
testcase_19 AC 627 ms
98,680 KB
testcase_20 AC 342 ms
99,692 KB
testcase_21 AC 178 ms
95,880 KB
testcase_22 AC 441 ms
100,464 KB
testcase_23 AC 619 ms
104,964 KB
testcase_24 AC 447 ms
100,136 KB
testcase_25 AC 427 ms
100,260 KB
testcase_26 AC 398 ms
100,012 KB
testcase_27 AC 212 ms
100,908 KB
testcase_28 AC 522 ms
100,012 KB
testcase_29 AC 352 ms
100,572 KB
testcase_30 AC 414 ms
100,452 KB
testcase_31 AC 224 ms
100,480 KB
testcase_32 AC 227 ms
100,364 KB
testcase_33 AC 229 ms
100,148 KB
testcase_34 AC 207 ms
99,872 KB
testcase_35 AC 169 ms
89,188 KB
testcase_36 AC 201 ms
100,976 KB
testcase_37 TLE -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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
todo0=[]
for v0 in range(a+1):
  for nv in g[v0]:
    if nv>a:
      if seen[nv]==inf:
        todo0.append(nv)
        seen[nv]=1
seen=[inf]*(n+2)
while todo0:
  v0=todo0.pop()
  todo=[[1,v0]]
  seen[v0]=1
  while todo:
    c,v=heappop(todo)
    if v>b:
      ans=min(ans,c)
      continue
    if seen[v]!=c:continue
    for nv in g[v]:
      if a<nv and seen[nv]>c+1:
        seen[nv]=c+1
        heappush(todo,[c+1,nv])
print(-1 if ans==inf else ans)
0