結果

問題 No.1244 Black Segment
ユーザー NoneNone
提出日時 2021-05-06 07:03:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,184 KB
最終ジャッジ日時 2024-09-14 00:11:25
合計ジャッジ時間 8,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,232 KB
testcase_01 AC 40 ms
54,580 KB
testcase_02 AC 39 ms
55,064 KB
testcase_03 AC 41 ms
54,248 KB
testcase_04 AC 40 ms
54,072 KB
testcase_05 AC 40 ms
54,000 KB
testcase_06 AC 40 ms
54,244 KB
testcase_07 AC 41 ms
54,208 KB
testcase_08 AC 40 ms
55,180 KB
testcase_09 AC 40 ms
55,312 KB
testcase_10 AC 41 ms
54,196 KB
testcase_11 AC 41 ms
54,984 KB
testcase_12 AC 41 ms
54,164 KB
testcase_13 AC 86 ms
77,120 KB
testcase_14 AC 161 ms
81,640 KB
testcase_15 AC 88 ms
77,128 KB
testcase_16 AC 146 ms
79,596 KB
testcase_17 AC 76 ms
74,868 KB
testcase_18 AC 172 ms
84,704 KB
testcase_19 AC 217 ms
88,172 KB
testcase_20 AC 210 ms
86,836 KB
testcase_21 AC 196 ms
86,900 KB
testcase_22 AC 212 ms
86,792 KB
testcase_23 AC 218 ms
86,420 KB
testcase_24 AC 210 ms
86,544 KB
testcase_25 AC 203 ms
86,724 KB
testcase_26 AC 200 ms
86,592 KB
testcase_27 AC 218 ms
88,744 KB
testcase_28 AC 220 ms
88,396 KB
testcase_29 AC 219 ms
87,528 KB
testcase_30 AC 201 ms
86,240 KB
testcase_31 AC 222 ms
87,600 KB
testcase_32 AC 231 ms
87,640 KB
testcase_33 AC 220 ms
87,456 KB
testcase_34 AC 152 ms
82,844 KB
testcase_35 AC 164 ms
87,796 KB
testcase_36 AC 189 ms
87,424 KB
testcase_37 AC 215 ms
89,184 KB
testcase_38 AC 219 ms
88,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(starts):
    dist=[INF]*(N+1)
    next_set=deque()
    for start in starts:
        next_set.append((start,0))
        dist[start]=0
    while next_set:
        p,t=next_set.popleft()
        for q in edges[p]:
            if dist[q]!=INF:
                continue
            dist[q]=t+1
            next_set.append((q,t+1))
    return dist

##############################################

N,M,A,B=map(int, input().split())
A-=1
B-=1
INF=10**18
res=INF
starts=[]
edges=[[] for _ in range(N+1)]
for _ in range(M):
    l,r=map(int, input().split())
    l-=1
    r-=1
    if l<=A:
        starts.append(l)
        edges[l].append(r+1)
    elif A<=l<=B:
        edges[l].append(r+1)
        edges[r+1].append(l)

dist=bfs(starts)

for i in range(B+1,N+1):
    res=min(dist[i],res)


print(res if res!=INF else -1)
0