結果

問題 No.1391 ±1 Abs Sum
ユーザー vwxyzvwxyz
提出日時 2024-08-15 05:18:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,066 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 106,176 KB
最終ジャッジ日時 2024-08-15 05:18:11
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 33 ms
52,864 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,480 KB
testcase_06 WA -
testcase_07 AC 45 ms
52,608 KB
testcase_08 AC 43 ms
60,800 KB
testcase_09 AC 44 ms
59,136 KB
testcase_10 AC 48 ms
60,288 KB
testcase_11 AC 144 ms
101,776 KB
testcase_12 AC 113 ms
101,848 KB
testcase_13 AC 134 ms
105,448 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 138 ms
99,200 KB
testcase_20 AC 164 ms
101,760 KB
testcase_21 AC 133 ms
101,228 KB
testcase_22 AC 127 ms
100,736 KB
testcase_23 AC 131 ms
104,576 KB
testcase_24 AC 104 ms
103,808 KB
testcase_25 AC 113 ms
103,680 KB
testcase_26 AC 111 ms
104,772 KB
testcase_27 AC 90 ms
95,616 KB
testcase_28 AC 129 ms
95,872 KB
testcase_29 AC 97 ms
103,936 KB
testcase_30 AC 135 ms
98,888 KB
testcase_31 AC 196 ms
101,504 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 137 ms
101,760 KB
testcase_35 AC 35 ms
52,480 KB
testcase_36 AC 117 ms
100,456 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 range(m-5,m+5):
        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