結果

問題 No.798 コレクション
ユーザー imulanimulan
提出日時 2019-03-17 17:15:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 1,317 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 175,492 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-07-07 04:44:32
合計ジャッジ時間 3,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
34,752 KB
testcase_01 AC 15 ms
34,804 KB
testcase_02 AC 11 ms
34,688 KB
testcase_03 AC 10 ms
34,688 KB
testcase_04 AC 11 ms
34,760 KB
testcase_05 AC 11 ms
34,788 KB
testcase_06 AC 10 ms
34,816 KB
testcase_07 AC 11 ms
34,816 KB
testcase_08 AC 11 ms
34,688 KB
testcase_09 AC 11 ms
34,688 KB
testcase_10 AC 12 ms
34,816 KB
testcase_11 AC 11 ms
34,756 KB
testcase_12 AC 11 ms
34,772 KB
testcase_13 AC 16 ms
34,784 KB
testcase_14 AC 19 ms
34,688 KB
testcase_15 AC 19 ms
34,816 KB
testcase_16 AC 16 ms
34,804 KB
testcase_17 AC 18 ms
34,688 KB
testcase_18 AC 26 ms
34,688 KB
testcase_19 AC 20 ms
34,784 KB
testcase_20 AC 16 ms
34,816 KB
testcase_21 AC 16 ms
34,624 KB
testcase_22 AC 19 ms
34,688 KB
testcase_23 AC 11 ms
34,636 KB
testcase_24 AC 21 ms
34,688 KB
testcase_25 AC 22 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second
#define dbg(x) cout<<#x" = "<<((x))<<endl
template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}
template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}

using pi = pair<int,int>;

const ll INF = LLONG_MAX/3;
const int N = 2002;
ll dp[N][N];

int main(){
    int n;
    cin >>n;

    vector<pi> v(n);
    rep(i,n){
        int a,b;
        cin >>a >>b;
        v[i] = {b,a};
    }
    sort(all(v));
    reverse(all(v));

    rep(i,N)rep(j,N) dp[i][j] = INF;
    dp[0][0] = 0;
    rep(i,n){
        int a = v[i].se, b = v[i].fi;
        // j番目に買う
        rep(j,N)if(dp[i][j] < INF){
            dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]+(a+b*j));
        }
    }

    ll ans = INF;
    for(int i=1; i<=n; ++i){
        int num = 0;
        for(int j=1; j<=i; ++j){
            ++num;
            if(j%2 == 0) ++num;
        }
        if(num >= n) ans = min(ans, dp[n][i]);
    }
    cout << ans << endl;
    return 0;
}
0