結果
問題 | No.798 コレクション |
ユーザー | やむなく |
提出日時 | 2019-03-15 21:54:00 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 800 bytes |
コンパイル時間 | 1,439 ms |
コンパイル使用メモリ | 168,852 KB |
実行使用メモリ | 24,192 KB |
最終ジャッジ日時 | 2024-07-01 20:52:07 |
合計ジャッジ時間 | 2,477 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(x) (x).begin(),(x).end() #define SP <<" "<< #define MOD 1000000007 #define IINF 1000000000 #define LINF 1000000000000000000 typedef long long LL; typedef long double LD; int main(){ int n; cin >> n; vector<pair<LL,LL>> p(n); for(int i=0;i<n;i++){ cin >> p[i].second >> p[i].first; } sort(all(p),greater<pair<LL,LL>>()); int d=0,c=0; for(;d+c<n;d++) if(d%2) c++; // cout << d << endl; vector<vector<LL>> dp(n+1,vector<LL>(d+1,LINF)); for(int i=0;i<=n;i++){ dp[i][0]=0; } for(int i=1;i<=n;i++){ for(int j=1;j<=d;j++){ dp[i][j]=min(dp[i-1][j],dp[i-1][j-1]+p[i-1].second+p[i-1].first*(j-1)); // cout << dp[i][j] << " "; } // cout << endl; } cout << dp[n][d] << endl; return 0; }