結果

問題 No.1767 BLUE to RED
ユーザー tamatotamato
提出日時 2021-11-26 22:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 148,520 KB
最終ジャッジ日時 2024-06-29 18:14:12
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 33 ms
52,480 KB
testcase_02 AC 32 ms
52,608 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 35 ms
53,120 KB
testcase_06 AC 34 ms
52,864 KB
testcase_07 AC 40 ms
61,184 KB
testcase_08 AC 44 ms
63,104 KB
testcase_09 AC 143 ms
117,776 KB
testcase_10 AC 187 ms
128,492 KB
testcase_11 AC 173 ms
135,568 KB
testcase_12 AC 147 ms
117,696 KB
testcase_13 AC 193 ms
129,140 KB
testcase_14 AC 209 ms
148,220 KB
testcase_15 AC 211 ms
148,216 KB
testcase_16 AC 209 ms
148,276 KB
testcase_17 AC 215 ms
148,308 KB
testcase_18 AC 215 ms
148,044 KB
testcase_19 AC 208 ms
148,156 KB
testcase_20 AC 211 ms
148,476 KB
testcase_21 AC 212 ms
148,364 KB
testcase_22 AC 209 ms
148,016 KB
testcase_23 AC 205 ms
148,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))


    A.append(10 ** 10)
    C = []
    for a in A:
        C.append((a, 0))
    for b in B:
        C.append((b, 1))
    C.sort(key=lambda x: x[0])
    ans = 0
    st = [-10 ** 10]
    for x, y in C:
        if y == 0:
            st.append(x)
            ans += st[-1] - st[0] - 1
            ma = 0
            for i in range(len(st) - 1):
                ma = max(ma, st[i+1] - st[i] - 1)
            ans -= ma
            st = [x]
        else:
            st.append(x)
    print(ans)


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