結果
問題 | No.1244 Black Segment |
ユーザー | ntuda |
提出日時 | 2021-11-09 21:55:09 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 98,652 KB |
最終ジャッジ日時 | 2024-04-29 20:30:34 |
合計ジャッジ時間 | 7,602 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,584 KB |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 40 ms
51,840 KB |
testcase_03 | AC | 40 ms
52,224 KB |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 40 ms
51,968 KB |
testcase_10 | RE | - |
testcase_11 | AC | 40 ms
52,352 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 232 ms
98,652 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | AC | 191 ms
91,772 KB |
ソースコード
import sys N,M,A,B = map(int,input().split()) LR = [list(map(int,input().split())) for _ in range(M)] E = [[] for _ in range(B - A + 2)] N2 = B - A + 1 for i in range(M): l,r = LR[i] a = max(0,l-A) b = min(B-A+1,r-A+1) E[a].append((b)) E[b].append((a)) #print(E) q1 = {0} q2 = set() nvstd = [True] * (N2+1) nvstd[0] = False ans = 0 while q1: ans += 1 while q1: frm = next(iter(q1)) q1.remove(frm) for to in E[frm]: if to == N2: print(ans) sys.exit() if nvstd[to]: q2.add(to) nvstd[to] = False q1,q2 = q2,q1 q2 = set() print(-1)