結果

問題 No.286 Modulo Discount Store
ユーザー taka99_xyztaka99_xyz
提出日時 2022-12-22 19:19:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,413 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 205,716 KB
実行使用メモリ 132,480 KB
最終ジャッジ日時 2024-04-29 03:47:19
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 39 ms
35,664 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 77 ms
67,840 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 20 ms
19,584 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 37 ms
35,664 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 153 ms
132,480 KB
testcase_18 AC 19 ms
19,584 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 5 ms
7,552 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 38 ms
35,668 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 11 ms
11,520 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 11 ms
11,520 KB
testcase_28 AC 74 ms
67,968 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 4 ms
5,504 KB
testcase_32 AC 4 ms
5,504 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 11 ms
11,520 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 73 ms
67,840 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)   FOR(i,0,n)
#define ALL(a)     (a).begin(),(a).end()
#define RALL(a)     (a).rbegin(),(a).rend()
#define PRINT(a)   cout << (a) << endl

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define Fi first
#define Se second

#define debug(x) cerr << x << " " << "(L:" << __LINE__ << ")" << '\n';

using ll = long long int;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using pii = pair<int, int>;

template <typename T> using PQ = priority_queue<T>;
template <typename T> using minPQ = priority_queue<T, vector<T>, greater<T>>;

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

const int INF = 1001001001;
const ll LINF = 1001001001001001001ll;
const int MOD = 1e9 + 7;

int main(){
  int n;
  cin >> n;
  vector<int> m(n);
  REP(i,n)cin >> m[i];

  vector dp(1 << n,vector<int>(1000,INF));
  dp[0][0]=0;


  REP(s, 1<<n)REP(md, 1000){
    if(dp[s][md]==INF)continue;

    REP(x, n){
      if(~s & (1<<x)){
        int c =  max(m[x] - md, 0);
        chmin(dp[s | (1<<x)][(md + m[x]) % 1000], dp[s][md]+c);
      }

    }
  }
  int ans=INF;
  REP(i,1000)chmin(ans,dp[(1<<n)-1][i]);
  cout << ans << endl;

}

0