結果

問題 No.738 平らな農地
ユーザー vwxyzvwxyz
提出日時 2024-04-06 05:20:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 5,832 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 125,840 KB
最終ジャッジ日時 2024-04-06 05:20:43
合計ジャッジ時間 36,391 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,604 KB
testcase_01 AC 43 ms
55,604 KB
testcase_02 AC 42 ms
55,604 KB
testcase_03 AC 42 ms
55,604 KB
testcase_04 AC 43 ms
55,604 KB
testcase_05 AC 154 ms
77,584 KB
testcase_06 AC 155 ms
77,836 KB
testcase_07 AC 141 ms
77,220 KB
testcase_08 AC 119 ms
77,076 KB
testcase_09 AC 110 ms
76,052 KB
testcase_10 AC 75 ms
73,868 KB
testcase_11 AC 125 ms
76,928 KB
testcase_12 AC 106 ms
75,900 KB
testcase_13 AC 147 ms
77,068 KB
testcase_14 AC 114 ms
76,036 KB
testcase_15 AC 541 ms
107,900 KB
testcase_16 AC 530 ms
111,412 KB
testcase_17 AC 619 ms
111,368 KB
testcase_18 AC 558 ms
107,728 KB
testcase_19 AC 667 ms
111,904 KB
testcase_20 AC 547 ms
111,424 KB
testcase_21 AC 628 ms
111,964 KB
testcase_22 AC 548 ms
111,556 KB
testcase_23 AC 615 ms
111,668 KB
testcase_24 AC 608 ms
111,436 KB
testcase_25 AC 113 ms
76,152 KB
testcase_26 AC 112 ms
76,016 KB
testcase_27 AC 115 ms
76,004 KB
testcase_28 AC 112 ms
76,152 KB
testcase_29 AC 118 ms
76,012 KB
testcase_30 AC 115 ms
76,144 KB
testcase_31 AC 109 ms
76,160 KB
testcase_32 AC 111 ms
76,012 KB
testcase_33 AC 115 ms
76,156 KB
testcase_34 AC 111 ms
76,012 KB
testcase_35 AC 108 ms
76,032 KB
testcase_36 AC 112 ms
76,016 KB
testcase_37 AC 106 ms
76,152 KB
testcase_38 AC 113 ms
76,152 KB
testcase_39 AC 115 ms
76,140 KB
testcase_40 AC 112 ms
76,164 KB
testcase_41 AC 120 ms
76,160 KB
testcase_42 AC 114 ms
76,032 KB
testcase_43 AC 109 ms
76,012 KB
testcase_44 AC 109 ms
76,024 KB
testcase_45 AC 530 ms
114,988 KB
testcase_46 AC 519 ms
110,460 KB
testcase_47 AC 514 ms
114,428 KB
testcase_48 AC 481 ms
114,380 KB
testcase_49 AC 469 ms
112,184 KB
testcase_50 AC 454 ms
114,548 KB
testcase_51 AC 549 ms
114,600 KB
testcase_52 AC 529 ms
112,184 KB
testcase_53 AC 488 ms
114,452 KB
testcase_54 AC 492 ms
114,624 KB
testcase_55 AC 512 ms
114,604 KB
testcase_56 AC 550 ms
114,388 KB
testcase_57 AC 495 ms
110,408 KB
testcase_58 AC 503 ms
114,496 KB
testcase_59 AC 481 ms
115,008 KB
testcase_60 AC 508 ms
114,952 KB
testcase_61 AC 494 ms
114,912 KB
testcase_62 AC 469 ms
110,448 KB
testcase_63 AC 521 ms
115,028 KB
testcase_64 AC 550 ms
114,772 KB
testcase_65 AC 616 ms
111,392 KB
testcase_66 AC 626 ms
111,844 KB
testcase_67 AC 478 ms
120,404 KB
testcase_68 AC 432 ms
119,092 KB
testcase_69 AC 579 ms
117,872 KB
testcase_70 AC 527 ms
115,712 KB
testcase_71 AC 119 ms
88,372 KB
testcase_72 AC 122 ms
89,424 KB
testcase_73 AC 120 ms
90,516 KB
testcase_74 AC 125 ms
90,852 KB
testcase_75 AC 549 ms
120,608 KB
testcase_76 AC 515 ms
119,452 KB
testcase_77 AC 609 ms
120,608 KB
testcase_78 AC 616 ms
117,048 KB
testcase_79 AC 609 ms
111,060 KB
testcase_80 AC 486 ms
115,516 KB
testcase_81 AC 548 ms
117,700 KB
testcase_82 AC 569 ms
112,860 KB
testcase_83 AC 264 ms
89,912 KB
testcase_84 AC 199 ms
89,976 KB
testcase_85 AC 726 ms
125,840 KB
testcase_86 AC 635 ms
120,272 KB
testcase_87 AC 263 ms
125,296 KB
testcase_88 AC 257 ms
120,488 KB
testcase_89 AC 42 ms
55,604 KB
testcase_90 AC 43 ms
55,604 KB
testcase_91 AC 42 ms
55,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class Segment_Tree:
    def __init__(self,N,f,e,lst=None,dynamic=False):
        self.f=f
        self.e=e
        self.N=N
        if dynamic:
            self.segment_tree=defaultdict(lambda:self.e)
        else:
            if lst==None:
                self.segment_tree=[self.e]*2*self.N
            else:
                assert len(lst)<=self.N
                self.segment_tree=[self.e]*self.N+[x for x in lst]+[self.e]*(N-len(lst))
                for i in range(self.N-1,0,-1):
                    self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def __getitem__(self,i):
        if type(i)==int:
            if -self.N<=i<0:
                return self.segment_tree[i+self.N*2]
            elif 0<=i<self.N:
                return self.segment_tree[i+self.N]
            else:
                raise IndexError("list index out of range")
        else:
            a,b,c=i.start,i.stop,i.step
            if a==None:
                a=self.N
            else:
                a+=self.N
            if b==None:
                b=self.N*2
            else:
                b+=self.N
            return self.segment_tree[slice(a,b,c)]

    def __setitem__(self,i,x):
        if -self.N<=i<0:
            i+=self.N*2
        elif 0<=i<self.N:
            i+=self.N
        else:
            raise IndexError("list index out of range")
        self.segment_tree[i]=x
        while i>1:
            i>>= 1
            self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def Build(self,lst):
        for i,x in enumerate(lst,self.N):
            self.segment_tree[i]=x
        for i in range(self.N-1,0,-1):
            self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def Fold(self,L=None,R=None):
        if L==None:
            L=self.N
        else:
            L+=self.N
        if R==None:
            R=self.N*2
        else:
            R+=self.N
        vL=self.e
        vR=self.e
        while L<R:
            if L&1:
                vL=self.f(vL,self.segment_tree[L])
                L+=1
            if R&1:
                R-=1
                vR=self.f(self.segment_tree[R],vR)
            L>>=1
            R>>=1
        return self.f(vL,vR)

    def Fold_Index(self,L=None,R=None):
        if L==None:
            L=self.N
        else:
            L+=self.N
        if R==None:
            R=self.N*2
        else:
            R+=self.N
        if L==R:
            return None
        x=self.Fold(L-self.N,R-self.N)
        while L<R:
            if L&1:
                if self.segment_tree[L]==x:
                    i=L
                    break
                L+=1
            if R&1:
                R-=1
                if self.segment_tree[R]==x:
                    i=R
                    break
            L>>=1
            R>>=1
        while i<self.N:
            if self.segment_tree[i]==self.segment_tree[i<<1]:
                i<<=1
            else:
                i<<=1
                i|=1
        i-=self.N
        return i

    def Bisect_Right(self,L=None,f=None):
        if L==self.N:
            return self.N
        if L==None:
            L=0
        L+=self.N
        vl=self.e
        vr=self.e
        l,r=L,self.N*2
        while l<r:
            if l&1:
                vl=self.f(vl,self.segment_tree[l])
                l+=1
            if r&1:
                r-=1
                vr=self.f(self.segment_tree[r],vr)
            l>>=1
            r>>=1
        if f(self.f(vl,vr)):
            return self.N
        v=self.e
        while True:
            while L%2==0:
                L>>=1
            vv=self.f(v,self.segment_tree[L])
            if f(vv):
                v=vv
                L+=1
            else:
                while L<self.N:
                    L<<=1
                    vv=self.f(v,self.segment_tree[L])
                    if f(vv):
                        v=vv
                        L+=1
                return L-self.N

    def Bisect_Left(self,R=None,f=None):
        if R==0:
            return 0
        if R==None:
            R=self.N
        R+=self.N
        vl=self.e
        vr=self.e
        l,r=self.N,R
        while l<r:
            if l&1:
                vl=self.f(vl,self.segment_tree[l])
                l+=1
            if r&1:
                r-=1
                vr=self.f(self.segment_tree[r],vr)
            l>>=1
            r>>=1
        if f(self.f(vl,vr)):
            return 0
        v=self.e
        while True:
            R-=1
            while R>1 and R%2:
                R>>=1
            vv=self.f(self.segment_tree[R],v)
            if f(vv):
                v=vv
            else:
                while R<self.N:
                    R=2*R+1
                    vv=self.f(self.segment_tree[R],v)
                    if f(vv):
                        v=vv
                        R-=1
                return R+1-self.N

    def __str__(self):
        return "["+", ".join(map(str,self.segment_tree[self.N:]))+"]"

def Compress(lst):
    decomp=sorted(list(set(lst)))
    comp={x:i for i,x in enumerate(decomp)}
    return comp,decomp

N,K=map(int,input().split())
A=list(map(int,input().split()))
inf=1<<60
ans=inf
comp,decomp=Compress(A)
le=len(comp)
ST_cnt=Segment_Tree(le,lambda x,y:x+y,0)
ST_sum=Segment_Tree(le,lambda x,y:x+y,0)
for k in range(K):
    ST_cnt[comp[A[k]]]+=1
    ST_sum[comp[A[k]]]+=A[k]
for i in range(N-K+1):
    m=ST_cnt.Bisect_Right(0,lambda cnt:cnt<=K//2)
    sl=ST_cnt.Fold(0,m)*decomp[m]-ST_sum.Fold(0,m)
    sr=ST_sum.Fold(m+1,le)-ST_cnt.Fold(m+1,le)*decomp[m]
    ans=min(ans,sl+sr)
    if i<N-K:
        ST_cnt[comp[A[i]]]-=1
        ST_sum[comp[A[i]]]-=A[i]
        ST_cnt[comp[A[i+K]]]+=1
        ST_sum[comp[A[i+K]]]+=A[i+K]
print(ans)
0