結果

問題 No.1767 BLUE to RED
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-11-26 22:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 135,236 KB
最終ジャッジ日時 2024-06-29 18:18:39
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 31 ms
51,712 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 32 ms
52,684 KB
testcase_05 AC 33 ms
52,864 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 40 ms
61,824 KB
testcase_08 AC 45 ms
64,512 KB
testcase_09 AC 123 ms
96,896 KB
testcase_10 AC 153 ms
103,168 KB
testcase_11 AC 128 ms
102,528 KB
testcase_12 AC 123 ms
96,992 KB
testcase_13 AC 150 ms
110,152 KB
testcase_14 AC 176 ms
134,552 KB
testcase_15 AC 187 ms
135,236 KB
testcase_16 AC 181 ms
135,116 KB
testcase_17 AC 180 ms
134,936 KB
testcase_18 AC 177 ms
134,608 KB
testcase_19 AC 178 ms
134,676 KB
testcase_20 AC 173 ms
134,796 KB
testcase_21 AC 186 ms
134,808 KB
testcase_22 AC 182 ms
134,808 KB
testcase_23 AC 174 ms
134,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N,M = map(int,stdin.readline().split())

A = [-10**10] + list(map(int,stdin.readline().split())) + [10**10]
B = list(map(int,stdin.readline().split()))

B.reverse()

ans = 0
for i in range(N+1):

    al = A[i]
    ar = A[i+1]

    dlis = [al]
    while len(B) > 0 and al <= B[-1] <= ar:
        dlis.append(B[-1])
        del B[-1]

    dlis.append(ar)

    d2 = []
    for j in range(len(dlis)-1):
        d2.append(dlis[j+1]-dlis[j])

    #print (al,ar,d2)
    ma = max(d2)
    ans += sum(d2) - ma

print (ans)
0