結果

問題 No.798 コレクション
ユーザー SumitacchanSumitacchan
提出日時 2019-03-17 21:05:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 2,329 bytes
コンパイル時間 1,652 ms
コンパイル使用メモリ 170,960 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-07-07 19:25:20
合計ジャッジ時間 3,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 10 ms
12,288 KB
testcase_14 AC 16 ms
17,920 KB
testcase_15 AC 14 ms
15,872 KB
testcase_16 AC 7 ms
9,088 KB
testcase_17 AC 9 ms
12,672 KB
testcase_18 AC 20 ms
22,784 KB
testcase_19 AC 18 ms
18,816 KB
testcase_20 AC 6 ms
9,216 KB
testcase_21 AC 6 ms
8,448 KB
testcase_22 AC 13 ms
15,872 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 21 ms
24,064 KB
testcase_25 AC 20 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:47: warning: ‘n’ may be used uninitialized in this function [-Wmaybe-uninitialized]
    4 | #define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
      |                                               ^
main.cpp:60:9: note: ‘n’ was declared here
   60 |     int n;
      |         ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod



signed main(){

    int N; cin >> N;
    vec A(N), B(N);
    pairs p(N);
    REP(i, N){
        cin >> A[i] >> B[i];
        p[i] = Pii(B[i], i);
    }
    Sort(p);
    Reverse(p);

    int n;
    REP(i, N + 1){
        if(i + i / 2 >= N){
            n = i;
            break;
        }
    }
    //debug(n);
    mat dp(N + 1, vec(n + 1, INF));
    dp[0][0] = 0;
    REP(i, N){
        REP(j, n + 1) dp[i + 1][j] = dp[i][j];
        REP(j, n){
            int i0 = p[i].s;
            Min(dp[i + 1][j + 1], dp[i][j] + A[i0] + B[i0] * j);
        }
    }
    cout << dp[N][n] << endl;


    return 0;
}
0