結果

問題 No.1430 Coup de Coupon
ユーザー tko919tko919
提出日時 2021-03-14 15:11:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,073 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 203,216 KB
実行使用メモリ 199,552 KB
最終ジャッジ日時 2024-04-23 22:49:32
合計ジャッジ時間 5,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 154 ms
199,212 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 152 ms
199,432 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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;}
//end

ll dp[5010][5010];

int main(){
   int n,m;
   cin>>n>>m;
   vector<int> p(n);
   rep(i,0,n)cin>>p[i];
   sort(ALL(p),greater<int>());

   vector<int> cs[2];
   rep(i,0,m){
      int t,x;
      cin>>t>>x; t--;
      cs[t].push_back(x);
   }
   rep(i,0,2){
      sort(ALL(cs[i]));
      cs[i].resize(n+1);
   }

   rep(i,0,n+1)rep(j,0,n+1)dp[i][j]=INF;
   dp[0][0]=0;
   rep(i,0,n)rep(j,0,i+1)if(dp[i][j]!=INF){
      chmin(dp[i+1][j],dp[i][j]+max(0,p[i]-cs[0][i-j]));
      chmin(dp[i+1][j+1],dp[i][j]+p[i]/100*(100-cs[1][j]));
   }
   ll res=INF;
   rep(i,0,n+1)chmin(res,dp[n][i]);
   cout<<res<<'\n';
   return 0;
}
0