結果

問題 No.1244 Black Segment
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 21:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-06-25 23:27:14
合計ジャッジ時間 9,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 44 ms
51,840 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 47 ms
53,888 KB
testcase_09 AC 47 ms
53,376 KB
testcase_10 AC 47 ms
53,632 KB
testcase_11 AC 46 ms
54,144 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 107 ms
77,184 KB
testcase_14 AC 196 ms
87,048 KB
testcase_15 AC 107 ms
77,312 KB
testcase_16 AC 192 ms
86,832 KB
testcase_17 AC 93 ms
74,820 KB
testcase_18 AC 130 ms
81,152 KB
testcase_19 AC 156 ms
84,864 KB
testcase_20 AC 223 ms
91,904 KB
testcase_21 AC 198 ms
92,236 KB
testcase_22 AC 229 ms
91,776 KB
testcase_23 AC 232 ms
91,008 KB
testcase_24 AC 219 ms
88,412 KB
testcase_25 AC 216 ms
91,076 KB
testcase_26 AC 245 ms
92,848 KB
testcase_27 AC 252 ms
99,200 KB
testcase_28 AC 219 ms
88,776 KB
testcase_29 AC 243 ms
88,704 KB
testcase_30 AC 229 ms
88,448 KB
testcase_31 AC 227 ms
88,064 KB
testcase_32 AC 227 ms
88,448 KB
testcase_33 AC 227 ms
88,272 KB
testcase_34 AC 183 ms
87,424 KB
testcase_35 AC 200 ms
88,064 KB
testcase_36 AC 221 ms
88,408 KB
testcase_37 AC 261 ms
93,748 KB
testcase_38 AC 197 ms
87,092 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+3)]
a,b=a-1,b
for l,r in lr:
  l,r=l-1,r
  if r<=a or b<=l:
    continue
  if l<=a and b<=r:
    print(1)
    exit()
  elif a<l<=r<b:
    g[l].append(r)
    g[r].append(l)
  elif l<=a<=r:
    g[n+1].append(r)
    g[r].append(n+1)
  else:
    g[n+2].append(l)
    g[l].append(n+2)
#print(g)
from collections import deque
seen=[-1]*(n+3)
todo=deque([n+1])
seen[n+1]=0
while todo:
  v=todo.popleft()
  for nv in g[v]:
    if seen[nv]==-1:
      seen[nv]=seen[v]+1
      todo.append(nv)
print(seen[n+2])
#print(seen)
0