結果

問題 No.1391 ±1 Abs Sum
ユーザー terry_u16terry_u16
提出日時 2021-02-12 22:50:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,700 KB
最終ジャッジ日時 2024-07-19 23:53:34
合計ジャッジ時間 8,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
66,816 KB
testcase_01 AC 60 ms
66,816 KB
testcase_02 AC 59 ms
67,200 KB
testcase_03 AC 60 ms
67,328 KB
testcase_04 AC 60 ms
67,200 KB
testcase_05 AC 60 ms
67,200 KB
testcase_06 AC 61 ms
67,200 KB
testcase_07 AC 61 ms
67,200 KB
testcase_08 AC 64 ms
68,352 KB
testcase_09 AC 64 ms
67,840 KB
testcase_10 AC 62 ms
67,840 KB
testcase_11 AC 259 ms
117,396 KB
testcase_12 AC 243 ms
107,400 KB
testcase_13 AC 271 ms
113,364 KB
testcase_14 AC 231 ms
96,056 KB
testcase_15 AC 218 ms
98,704 KB
testcase_16 AC 259 ms
107,296 KB
testcase_17 AC 255 ms
102,712 KB
testcase_18 AC 305 ms
112,756 KB
testcase_19 AC 234 ms
102,480 KB
testcase_20 AC 268 ms
116,660 KB
testcase_21 AC 231 ms
102,412 KB
testcase_22 AC 217 ms
102,540 KB
testcase_23 AC 242 ms
108,600 KB
testcase_24 AC 225 ms
106,064 KB
testcase_25 AC 234 ms
106,572 KB
testcase_26 AC 230 ms
108,644 KB
testcase_27 AC 214 ms
95,096 KB
testcase_28 AC 212 ms
96,384 KB
testcase_29 AC 223 ms
105,476 KB
testcase_30 AC 213 ms
98,104 KB
testcase_31 AC 265 ms
117,256 KB
testcase_32 AC 154 ms
92,312 KB
testcase_33 AC 173 ms
97,936 KB
testcase_34 AC 216 ms
116,792 KB
testcase_35 AC 69 ms
66,688 KB
testcase_36 AC 231 ms
117,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing

class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s

n, k = map(int, input().split())
a = list(map(int, input().split()))
bit = FenwickTree(n)

current = 0

for i in range(n):
    if i < k:
        current += abs(a[i] - a[0])
        bit.add(i, 1)
    else:
        current -= abs(a[i] - a[0])
        bit.add(i, -1)

minimum = current
nextSub = k

for i in range(1, n):
    plus = -bit.sum(i, n) + bit.sum(0, i)
    current += plus * abs(a[i] - a[i - 1])

    while nextSub < n:
        left = a[nextSub - k]
        right = a[nextSub]
        leftDiff = abs(left - a[i])
        rightDiff = abs(right - a[i])

        if leftDiff > rightDiff:
            current -= 2 * leftDiff
            current += 2 * rightDiff
            bit.add(nextSub, 2)
            bit.add(nextSub - k, -2)
            nextSub += 1
        else:
            break
    
    minimum = min(minimum, current)

print(minimum)
0