結果
問題 | No.1244 Black Segment |
ユーザー | Shinya Fujita |
提出日時 | 2024-10-11 16:08:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 455 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 89,984 KB |
最終ジャッジ日時 | 2024-10-11 16:08:53 |
合計ジャッジ時間 | 8,952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 41 ms
53,632 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 41 ms
53,888 KB |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
53,632 KB |
testcase_09 | AC | 41 ms
54,144 KB |
testcase_10 | WA | - |
testcase_11 | AC | 41 ms
53,760 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 80 ms
74,880 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 223 ms
87,808 KB |
testcase_21 | AC | 229 ms
87,936 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 217 ms
88,320 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 247 ms
89,984 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
from collections import deque n,m,a,b=map(int,input().split()) g=[[] for _ in range(n+2)] q=deque([]) for _ in range(m): l,r=map(int,input().split()) g[l].append(r+1) g[r+1].append(l) if l<=a: q.append((0,l)) d=[-1]*(n+2) while q: dd,i=q.popleft() if 0<=d[i]<=dd: continue d[i]=dd for j in g[i]: if d[j]==-1: q.append((j,dd+1)) ans=-1 for i in range(b+1,n+2): if d[i]>=-1: if ans==-1: ans=d[i] ans=min(ans,d[i]) print(ans)