結果

問題 No.1244 Black Segment
ユーザー tamatotamato
提出日時 2020-10-02 22:57:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 121,316 KB
最終ジャッジ日時 2024-07-17 23:00:58
合計ジャッジ時間 6,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,004 KB
testcase_01 AC 36 ms
55,428 KB
testcase_02 AC 36 ms
54,344 KB
testcase_03 AC 38 ms
55,244 KB
testcase_04 AC 38 ms
54,668 KB
testcase_05 AC 38 ms
54,260 KB
testcase_06 AC 36 ms
55,620 KB
testcase_07 AC 36 ms
54,980 KB
testcase_08 AC 35 ms
54,764 KB
testcase_09 AC 34 ms
55,728 KB
testcase_10 AC 36 ms
54,732 KB
testcase_11 AC 35 ms
54,748 KB
testcase_12 AC 40 ms
54,636 KB
testcase_13 AC 67 ms
72,732 KB
testcase_14 AC 115 ms
80,224 KB
testcase_15 AC 66 ms
73,756 KB
testcase_16 AC 101 ms
79,580 KB
testcase_17 AC 56 ms
69,508 KB
testcase_18 AC 153 ms
96,580 KB
testcase_19 AC 184 ms
100,884 KB
testcase_20 AC 203 ms
106,068 KB
testcase_21 AC 178 ms
103,636 KB
testcase_22 AC 194 ms
106,604 KB
testcase_23 AC 208 ms
108,544 KB
testcase_24 AC 201 ms
109,572 KB
testcase_25 AC 193 ms
108,924 KB
testcase_26 AC 196 ms
109,332 KB
testcase_27 AC 205 ms
116,256 KB
testcase_28 AC 211 ms
110,656 KB
testcase_29 AC 207 ms
109,292 KB
testcase_30 AC 210 ms
107,804 KB
testcase_31 AC 211 ms
108,568 KB
testcase_32 AC 210 ms
110,408 KB
testcase_33 AC 206 ms
109,404 KB
testcase_34 AC 162 ms
107,472 KB
testcase_35 AC 170 ms
119,928 KB
testcase_36 AC 216 ms
121,316 KB
testcase_37 AC 184 ms
107,000 KB
testcase_38 AC 186 ms
105,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    N, M, A, B = map(int, input().split())
    N += 1
    adj = [set() for _ in range(N+1)]
    for _ in range(M):
        l, r = map(int, input().split())
        r += 1
        l = max(l, A)
        r = min(r, B+1)
        adj[l].add(r)
        adj[r].add(l)

    que = deque()
    que.append(A)
    seen = [-1] * (N+1)
    seen[A] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)
    seq.reverse()

    print(seen[B+1])


if __name__ == '__main__':
    main()
0