結果

問題 No.1767 BLUE to RED
ユーザー first_vilfirst_vil
提出日時 2021-11-05 11:16:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 145,164 KB
最終ジャッジ日時 2024-06-29 18:03:06
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,892 KB
testcase_01 AC 37 ms
55,576 KB
testcase_02 AC 36 ms
54,420 KB
testcase_03 AC 39 ms
53,992 KB
testcase_04 AC 40 ms
54,596 KB
testcase_05 AC 36 ms
55,512 KB
testcase_06 AC 35 ms
54,544 KB
testcase_07 AC 41 ms
63,120 KB
testcase_08 AC 42 ms
63,164 KB
testcase_09 AC 118 ms
112,380 KB
testcase_10 AC 138 ms
106,804 KB
testcase_11 AC 130 ms
119,212 KB
testcase_12 AC 123 ms
112,780 KB
testcase_13 AC 149 ms
127,520 KB
testcase_14 AC 182 ms
145,024 KB
testcase_15 AC 174 ms
144,752 KB
testcase_16 AC 182 ms
145,140 KB
testcase_17 AC 181 ms
144,760 KB
testcase_18 AC 182 ms
144,624 KB
testcase_19 AC 182 ms
144,764 KB
testcase_20 AC 171 ms
144,948 KB
testcase_21 AC 170 ms
145,164 KB
testcase_22 AC 171 ms
144,736 KB
testcase_23 AC 178 ms
144,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

n,m = mi()
a = deque(li())
x = []
for b in li():
    while a and a[0]<b:
        x.append(a.popleft())
    x.append(-b)
x += list(a)

ans = abs(x[-1]) - abs(x[0])
pre = -1
mac = 0;
for i in range(n+m):
    if i:
        mac = max(mac, abs(x[i]) - abs(x[i - 1]))
    if x[i] > 0:
        if pre != -1:
            ans -= mac
        pre = i
        mac = 0

print(ans)
0