結果

問題 No.798 コレクション
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-30 17:28:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 625 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-27 03:38:20
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 RE -
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 RE -
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 39 ms
51,584 KB
testcase_13 AC 112 ms
76,796 KB
testcase_14 AC 135 ms
76,800 KB
testcase_15 AC 128 ms
76,984 KB
testcase_16 AC 85 ms
76,236 KB
testcase_17 AC 112 ms
76,928 KB
testcase_18 AC 157 ms
77,004 KB
testcase_19 AC 144 ms
77,184 KB
testcase_20 AC 103 ms
76,544 KB
testcase_21 AC 95 ms
76,288 KB
testcase_22 AC 132 ms
76,800 KB
testcase_23 RE -
testcase_24 AC 125 ms
76,928 KB
testcase_25 AC 157 ms
76,928 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
  # dp[j]商品iまででj個買うときの最小
  dp[0]=0
  for i in range(n):
    ndp=dp[:]
    a,b=ab[i]
    for j in range(n-1):
      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