結果

問題 No.1767 BLUE to RED
ユーザー first_vilfirst_vil
提出日時 2021-11-05 11:16:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 321 ms
27,692 KB
testcase_10 AC 415 ms
31,792 KB
testcase_11 AC 352 ms
30,684 KB
testcase_12 AC 328 ms
27,576 KB
testcase_13 AC 456 ms
34,112 KB
testcase_14 AC 560 ms
43,104 KB
testcase_15 AC 547 ms
43,208 KB
testcase_16 AC 558 ms
43,128 KB
testcase_17 AC 550 ms
43,256 KB
testcase_18 AC 552 ms
43,384 KB
testcase_19 AC 587 ms
42,952 KB
testcase_20 AC 563 ms
43,084 KB
testcase_21 AC 564 ms
43,128 KB
testcase_22 AC 577 ms
43,136 KB
testcase_23 AC 554 ms
43,260 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