結果

問題 No.733 分身並列コーディング
ユーザー りあんりあん
提出日時 2018-09-07 07:03:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 1,500 ms
コード長 826 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 206,276 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-11-25 03:44:43
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 65 ms
16,512 KB
testcase_04 AC 65 ms
16,512 KB
testcase_05 AC 26 ms
16,504 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 31 ms
16,628 KB
testcase_08 AC 28 ms
16,568 KB
testcase_09 AC 26 ms
9,856 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 13 ms
6,820 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 26 ms
9,856 KB
testcase_20 AC 24 ms
9,856 KB
testcase_21 AC 14 ms
6,816 KB
testcase_22 AC 52 ms
16,476 KB
testcase_23 AC 13 ms
6,820 KB
testcase_24 AC 12 ms
6,816 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 32 ms
16,512 KB
testcase_29 AC 43 ms
16,640 KB
testcase_30 AC 40 ms
16,488 KB
testcase_31 AC 42 ms
16,512 KB
testcase_32 AC 6 ms
6,820 KB
testcase_33 AC 6 ms
6,816 KB
testcase_34 AC 7 ms
6,816 KB
testcase_35 AC 6 ms
6,820 KB
testcase_36 AC 6 ms
6,820 KB
testcase_37 AC 6 ms
6,820 KB
testcase_38 AC 40 ms
16,512 KB
testcase_39 AC 39 ms
16,640 KB
testcase_40 AC 38 ms
16,384 KB
testcase_41 AC 6 ms
6,816 KB
testcase_42 AC 5 ms
6,816 KB
testcase_43 AC 6 ms
6,820 KB
testcase_44 AC 40 ms
16,512 KB
testcase_45 AC 39 ms
16,512 KB
testcase_46 AC 39 ms
16,512 KB
testcase_47 AC 38 ms
16,484 KB
testcase_48 AC 38 ms
16,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int M = 1000000007;

int main() {
    // O(n^2 2^n)
    int T, n;
    cin >> T >> n;
    vector<int> t(n);
    for (int i = 0; i < n; ++i) cin >> t[i];

    vector<vector<int>> dp(1 << n, vector<int>(n + 1, M));
    for (int i = 0; i < n + 1; ++i) dp[0][i] = 0;

    for (int i = 1; i < (1 << n); ++i) {
        for (int j = 0; j < n + 1; ++j) {
            if (j > 0 && dp[i][j - 1] <= T) {
                dp[i][j] = 0;
                continue;
            }
            for (int k = 0; k < n; ++k)
                if ((i >> k) & 1)
                    dp[i][j] = min(dp[i][j], dp[i ^ (1 << k)][j] + t[k]);
        }
    }
    for (int i = 0; i < n + 1; ++i) {
        if (dp[(1 << n) - 1][i] == 0) {
            cout << i << "\n";
            return 0;
        }
    }
}
0