結果

問題 No.1767 BLUE to RED
ユーザー first_vil
提出日時 2021-11-05 11:16:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,384 KB
最終ジャッジ日時 2024-06-29 18:03:16
合計ジャッジ時間 9,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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