結果

問題 No.286 Modulo Discount Store
ユーザー takenkotaketakenkotake
提出日時 2024-06-26 01:09:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,680 ms
コンパイル使用メモリ 200,640 KB
実行使用メモリ 11,712 KB
最終ジャッジ日時 2024-06-26 01:09:58
合計ジャッジ時間 4,500 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,592 KB
testcase_01 AC 6 ms
11,560 KB
testcase_02 AC 9 ms
11,604 KB
testcase_03 AC 7 ms
11,712 KB
testcase_04 AC 6 ms
11,624 KB
testcase_05 AC 7 ms
11,552 KB
testcase_06 AC 12 ms
11,652 KB
testcase_07 AC 6 ms
11,620 KB
testcase_08 AC 6 ms
11,560 KB
testcase_09 AC 7 ms
11,632 KB
testcase_10 AC 7 ms
11,660 KB
testcase_11 AC 7 ms
11,672 KB
testcase_12 AC 6 ms
11,696 KB
testcase_13 AC 9 ms
11,612 KB
testcase_14 AC 7 ms
11,636 KB
testcase_15 AC 7 ms
11,588 KB
testcase_16 AC 6 ms
11,656 KB
testcase_17 AC 19 ms
11,516 KB
testcase_18 AC 7 ms
11,520 KB
testcase_19 AC 6 ms
11,616 KB
testcase_20 AC 7 ms
11,576 KB
testcase_21 AC 6 ms
11,636 KB
testcase_22 AC 6 ms
11,660 KB
testcase_23 AC 9 ms
11,648 KB
testcase_24 AC 6 ms
11,684 KB
testcase_25 AC 6 ms
11,480 KB
testcase_26 AC 6 ms
11,644 KB
testcase_27 AC 6 ms
11,624 KB
testcase_28 AC 13 ms
11,600 KB
testcase_29 AC 6 ms
11,660 KB
testcase_30 AC 6 ms
11,652 KB
testcase_31 AC 7 ms
11,648 KB
testcase_32 AC 6 ms
11,528 KB
testcase_33 AC 7 ms
11,660 KB
testcase_34 AC 6 ms
11,508 KB
testcase_35 AC 7 ms
11,672 KB
testcase_36 AC 7 ms
11,588 KB
testcase_37 AC 7 ms
11,636 KB
testcase_38 AC 6 ms
11,624 KB
testcase_39 AC 13 ms
11,512 KB
testcase_40 AC 6 ms
11,504 KB
testcase_41 AC 7 ms
11,504 KB
testcase_42 AC 7 ms
11,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const long long inf=1e9;
int A[21];
int dp[1<<21];

int main(void){

    long long n;
    cin >> n;
    for(int i=0;i<n;i++){
        cin >> A[i];
    }
    for(int i=0;i<(1<<21);i++){
        dp[i]=inf;
    }
    dp[0]=0;
    // 1は選択済み。0はこれから
    for(int msk=0; msk<(1<<n); msk++){
      for(int j=0; j<n; j++){
        if(!(msk & (1<<j))){//まだ選択してない
          int total = 0;
          for(int i=0;i<n;i++){
            if(msk & (1<<i)) total += A[i];
          }
          dp[msk+(1<<j)]= min(dp[msk+(1<<j)],dp[msk]+max(0,A[j]-(total%1000)));
        }
      }
    }

    cout << dp[(1<<n)-1] << endl;
    return 0;
}
0