結果

問題 No.798 コレクション
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-30 17:30:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 77,160 KB
最終ジャッジ日時 2024-06-27 03:39:27
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,412 KB
testcase_01 AC 42 ms
51,940 KB
testcase_02 AC 41 ms
53,748 KB
testcase_03 AC 42 ms
53,000 KB
testcase_04 AC 40 ms
52,136 KB
testcase_05 AC 40 ms
51,876 KB
testcase_06 AC 41 ms
52,616 KB
testcase_07 AC 41 ms
53,460 KB
testcase_08 AC 41 ms
52,692 KB
testcase_09 AC 41 ms
52,884 KB
testcase_10 AC 42 ms
52,348 KB
testcase_11 AC 41 ms
52,408 KB
testcase_12 AC 41 ms
52,364 KB
testcase_13 AC 117 ms
76,956 KB
testcase_14 AC 139 ms
76,992 KB
testcase_15 AC 130 ms
76,856 KB
testcase_16 AC 93 ms
76,148 KB
testcase_17 AC 116 ms
76,960 KB
testcase_18 AC 157 ms
77,160 KB
testcase_19 AC 145 ms
76,696 KB
testcase_20 AC 99 ms
76,312 KB
testcase_21 AC 98 ms
76,468 KB
testcase_22 AC 132 ms
76,924 KB
testcase_23 AC 40 ms
52,284 KB
testcase_24 AC 137 ms
77,084 KB
testcase_25 AC 158 ms
76,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,ab):
  k=0
  cnt=0
  for i in range(n):
      cnt+=1
      if i%2==1:
          cnt+=1
      if cnt>=n:
          k=i+1
          break
  # k個の商品を買う
  ab.sort(key=lambda x:x[1],reverse=True)
  inf=float('inf')
  dp=[inf]*(n+1)
  # dp[j]商品iまででj個買うときの最小
  dp[0]=0
  for i in range(n):
    ndp=dp[:]
    a,b=ab[i]
    for j in range(n):
      if dp[j]==inf:continue
      ndp[j+1]=min(ndp[j+1],dp[j]+a+b*j)
    dp=ndp
  return dp[k]
    

if __name__=='__main__':
    n=int(input())
    ab=[list(map(int,input().split())) for _ in range(n)]
    ret1=main1(n,ab)
    print(ret1)
0