結果

問題 No.1708 Quality of Contest
ユーザー vwxyzvwxyz
提出日時 2021-10-29 22:23:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 861 ms / 2,000 ms
コード長 1,943 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 77,116 KB
最終ジャッジ日時 2024-10-07 11:54:27
合計ジャッジ時間 16,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 39 ms
11,776 KB
testcase_04 AC 41 ms
11,776 KB
testcase_05 AC 44 ms
11,648 KB
testcase_06 AC 37 ms
11,392 KB
testcase_07 AC 38 ms
11,648 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 769 ms
77,116 KB
testcase_10 AC 593 ms
43,148 KB
testcase_11 AC 749 ms
52,956 KB
testcase_12 AC 768 ms
55,204 KB
testcase_13 AC 735 ms
48,168 KB
testcase_14 AC 801 ms
56,516 KB
testcase_15 AC 798 ms
61,356 KB
testcase_16 AC 813 ms
60,796 KB
testcase_17 AC 754 ms
54,288 KB
testcase_18 AC 771 ms
55,584 KB
testcase_19 AC 786 ms
58,556 KB
testcase_20 AC 764 ms
55,608 KB
testcase_21 AC 793 ms
58,016 KB
testcase_22 AC 800 ms
56,572 KB
testcase_23 AC 861 ms
60,904 KB
testcase_24 AC 631 ms
43,860 KB
testcase_25 AC 624 ms
43,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline

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 __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))+"]"

N,M,X=map(int,readline().split())
dct=defaultdict(list)
for i in range(N):
    A,B=map(int,readline().split())
    dct[B].append(A)
lst=[]
for B in dct.keys():
    dct[B].sort()
    dct[B][-1]+=X
    lst+=dct[B]
K=int(readline())
lst.sort(reverse=True)
lst=Cumsum(lst)
ans=0
for c in map(int,readline().split()):
    ans+=lst[:c]
print(ans)
0