結果

問題 No.798 コレクション
ユーザー tko919tko919
提出日時 2021-08-30 17:30:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 206,476 KB
実行使用メモリ 34,964 KB
最終ジャッジ日時 2024-11-24 01:04:16
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 12 ms
22,272 KB
testcase_14 AC 16 ms
29,824 KB
testcase_15 AC 15 ms
27,776 KB
testcase_16 AC 9 ms
16,384 KB
testcase_17 AC 12 ms
23,040 KB
testcase_18 AC 19 ms
33,920 KB
testcase_19 AC 16 ms
30,720 KB
testcase_20 AC 8 ms
16,640 KB
testcase_21 AC 8 ms
15,360 KB
testcase_22 AC 14 ms
27,904 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 20 ms
34,964 KB
testcase_25 AC 20 ms
34,844 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