結果

問題 No.798 コレクション
ユーザー tko919tko919
提出日時 2021-08-30 17:30:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 208,316 KB
実行使用メモリ 35,032 KB
最終ジャッジ日時 2024-05-03 03:58:27
合計ジャッジ時間 3,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 12 ms
24,588 KB
testcase_14 AC 16 ms
29,984 KB
testcase_15 AC 13 ms
28,100 KB
testcase_16 AC 9 ms
21,132 KB
testcase_17 AC 12 ms
24,888 KB
testcase_18 AC 18 ms
34,444 KB
testcase_19 AC 17 ms
31,284 KB
testcase_20 AC 10 ms
21,060 KB
testcase_21 AC 8 ms
19,032 KB
testcase_22 AC 14 ms
28,864 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 19 ms
35,032 KB
testcase_25 AC 21 ms
34,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

ll dp[2010][2010];

int main(){
   int n;
   cin>>n;
   
   using P=pair<int,int>;
   vector<P> a(n);
   rep(i,0,n)cin>>a[i].second>>a[i].first;

   sort(ALL(a),greater<P>());
   rep(i,0,n+4)rep(j,0,n+4)dp[i][j]=INF;
   dp[0][0]=0;
   rep(i,0,n)rep(j,0,n+1){
      chmin(dp[i+1][j],dp[i][j]);
      ll add=a[i].first*j+a[i].second;
      chmin(dp[i+1][j+1],dp[i][j]+add);
   }
   cout<<dp[n][(n/3)*2+(n%3)]<<'\n';
   return 0;
}
0