結果

問題 No.1430 Coup de Coupon
ユーザー chocoruskchocorusk
提出日時 2021-03-14 18:42:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,623 bytes
コンパイル時間 3,544 ms
コンパイル使用メモリ 192,300 KB
実行使用メモリ 102,456 KB
最終ジャッジ日時 2024-11-06 08:06:30
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 26 ms
100,212 KB
testcase_04 AC 5 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 77 ms
102,132 KB
testcase_07 AC 77 ms
102,160 KB
testcase_08 AC 26 ms
100,420 KB
testcase_09 AC 37 ms
102,052 KB
testcase_10 AC 44 ms
100,772 KB
testcase_11 AC 51 ms
102,208 KB
testcase_12 AC 58 ms
102,456 KB
testcase_13 AC 64 ms
101,504 KB
testcase_14 AC 68 ms
102,440 KB
testcase_15 AC 72 ms
102,288 KB
testcase_16 AC 75 ms
102,288 KB
testcase_17 AC 76 ms
102,232 KB
testcase_18 AC 64 ms
101,432 KB
testcase_19 AC 64 ms
102,148 KB
testcase_20 AC 32 ms
53,988 KB
testcase_21 AC 13 ms
42,840 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 9 ms
30,604 KB
testcase_26 AC 9 ms
22,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
int dp[5050][5050];
int main()
{
    int n, c; cin>>n>>c;
    int p[5050];
    for(int i=0; i<n; i++){
        cin>>p[i];
    }
    sort(p, p+n, greater<int>());
    vector<int> v1, v2;
    for(int i=0; i<c; i++){
        int t, x; cin>>t>>x;
        if(t==1) v1.push_back(x);
        else v2.push_back(x);
    }
    sort(v1.begin(), v1.end(), greater<int>());
    sort(v2.begin(), v2.end(), greater<int>());
    const int INF=1e9+7;
    for(int i=0; i<=n; i++){
        for(int j=0; j<=v1.size(); j++){
            dp[i][j]=INF;
        }
    }
    dp[0][0]=0;
    for(int i=0; i<n; i++){
        for(int j=0; j<=v1.size() && j<=i; j++){
            int p1=p[i];
            if(i-j<v2.size()) p1=p[i]*(100-v2[i-j])/100;
            dp[i+1][j]=min(dp[i+1][j], dp[i][j]+p1);
            if(j<v1.size()){
                dp[i+1][j+1]=min(dp[i+1][j+1], dp[i][j]+max(p[i]-v1[j], 0));
            }
        }
    }
    int ans=INF;
    for(int i=0; i<=v1.size(); i++) ans=min(ans, dp[n][i]);
    cout<<ans<<endl;
    return 0;
}
0