結果

問題 No.1391 ±1 Abs Sum
ユーザー vwxyzvwxyz
提出日時 2024-08-15 05:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 2,077 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 105,680 KB
最終ジャッジ日時 2024-08-15 05:27:02
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,356 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 37 ms
54,232 KB
testcase_03 AC 37 ms
54,352 KB
testcase_04 AC 37 ms
53,812 KB
testcase_05 AC 37 ms
54,660 KB
testcase_06 AC 38 ms
53,732 KB
testcase_07 AC 39 ms
54,772 KB
testcase_08 AC 43 ms
60,440 KB
testcase_09 AC 39 ms
53,984 KB
testcase_10 AC 42 ms
61,028 KB
testcase_11 AC 144 ms
101,884 KB
testcase_12 AC 116 ms
102,136 KB
testcase_13 AC 130 ms
105,536 KB
testcase_14 AC 127 ms
93,900 KB
testcase_15 AC 127 ms
96,232 KB
testcase_16 AC 148 ms
101,684 KB
testcase_17 AC 143 ms
99,044 KB
testcase_18 AC 148 ms
105,680 KB
testcase_19 AC 117 ms
98,488 KB
testcase_20 AC 141 ms
101,932 KB
testcase_21 AC 117 ms
101,220 KB
testcase_22 AC 113 ms
100,796 KB
testcase_23 AC 119 ms
104,524 KB
testcase_24 AC 105 ms
104,348 KB
testcase_25 AC 115 ms
103,908 KB
testcase_26 AC 113 ms
104,592 KB
testcase_27 AC 101 ms
96,132 KB
testcase_28 AC 120 ms
96,592 KB
testcase_29 AC 105 ms
104,052 KB
testcase_30 AC 114 ms
98,896 KB
testcase_31 AC 153 ms
101,720 KB
testcase_32 AC 131 ms
92,248 KB
testcase_33 AC 130 ms
95,808 KB
testcase_34 AC 92 ms
101,572 KB
testcase_35 AC 35 ms
53,048 KB
testcase_36 AC 94 ms
100,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Cumsum:
    def __init__(self,lst,mod=0):
        self.N=len(lst)
        self.mod=mod
        self.cumsum=[0]*(self.N+1)
        self.cumsum[0]=0
        for i in range(1,self.N+1):
            self.cumsum[i]=self.cumsum[i-1]+lst[i-1]
            if self.mod:
                self.cumsum[i]%=self.mod

    def __getitem__(self,i):
        if type(i)==int:
            if 0<=i<self.N:
                a,b=i,i+1
            elif -self.N<=i<0:
                a,b=i+self.N,i+self.N+1
            else:
                raise IndexError('list index out of range')
        else:
            a,b=i.start,i.stop
            if a==None or a<-self.N:
                a=0
            elif self.N<=a:
                a=self.N
            elif a<0:
                a+=self.N
            if b==None or self.N<=b:
                b=self.N
            elif b<-self.N:
                b=0
            elif b<0:
                b+=self.N
        s=self.cumsum[b]-self.cumsum[a]
        if self.mod:
            s%=self.mod
        return s

    def __setitem__(self,i,x):
        if -self.N<=i<0:
            i+=self.N
        elif not 0<=i<self.N:
            raise IndexError('list index out of range')
        self.cumsum[i+1]=self.cumsum[i]+x
        if self.mod:
            self.cumsum[i+1]%=self.mod

    def __len__(self):
        return self.N

    def __str__(self):
        lst=[self.cumsum[i+1]-self.cumsum[i] for i in range(self.N)]
        if self.mod:
            for i in range(self.N):
                lst[i]%=self.mod
        return "["+", ".join(map(str,lst))+"]"

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

N,K=map(int,input().split())
A=Cumsum(list(map(int,input().split())))
inf=1<<60
ans=inf
for l in range(N-K+1):
    r=l+K
    c0=l
    c1=N-r
    m=l+r-N//2
    for i in (m-2,m-1,m,m+1,m+2,l,r-1):
        def f(l,r):
            return A[l:r]-(r-l)*A[i]
        if 0<=i<N:
            ans=min(ans,f(0,l)-f(l,i)+f(i+1,r)-f(r,N))
print(ans)
0