結果

問題 No.733 分身並列コーディング
ユーザー MisterMister
提出日時 2020-08-07 15:31:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 192 ms / 1,500 ms
コード長 988 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-24 07:00:39
合計ジャッジ時間 5,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 115 ms
12,928 KB
testcase_04 AC 111 ms
13,056 KB
testcase_05 AC 192 ms
12,928 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 186 ms
12,928 KB
testcase_08 AC 189 ms
13,056 KB
testcase_09 AC 69 ms
7,808 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 31 ms
6,944 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 67 ms
7,808 KB
testcase_20 AC 73 ms
7,808 KB
testcase_21 AC 31 ms
6,940 KB
testcase_22 AC 152 ms
12,928 KB
testcase_23 AC 34 ms
6,940 KB
testcase_24 AC 36 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 187 ms
12,928 KB
testcase_29 AC 170 ms
12,928 KB
testcase_30 AC 170 ms
12,928 KB
testcase_31 AC 171 ms
12,928 KB
testcase_32 AC 18 ms
6,944 KB
testcase_33 AC 18 ms
6,940 KB
testcase_34 AC 18 ms
6,940 KB
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 18 ms
6,944 KB
testcase_37 AC 18 ms
6,944 KB
testcase_38 AC 177 ms
12,928 KB
testcase_39 AC 176 ms
13,056 KB
testcase_40 AC 176 ms
12,928 KB
testcase_41 AC 18 ms
6,940 KB
testcase_42 AC 18 ms
6,940 KB
testcase_43 AC 18 ms
6,944 KB
testcase_44 AC 176 ms
13,056 KB
testcase_45 AC 176 ms
12,928 KB
testcase_46 AC 176 ms
12,928 KB
testcase_47 AC 176 ms
12,928 KB
testcase_48 AC 175 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

template <class T>
std::vector<T> vec(int len, T elem) { return std::vector<T>(len, elem); }

void solve() {
    int t, n;
    std::cin >> t >> n;

    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;

    auto dp = vec(n + 1, vec(1 << n, t + 1));
    dp[0][0] = 0;

    for (int k = 0; k < n; ++k) {
        for (int b = 0; b < (1 << n); ++b) {
            if (dp[k][b] > t) continue;

            // reset
            dp[k + 1][b] = 0;

            // solve
            for (int i = 0; i < n; ++i) {
                if ((b >> i) & 1) continue;

                int nb = b | (1 << i);
                dp[k][nb] = std::min(dp[k][nb], dp[k][b] + xs[i]);
            }
        }
    }

    for (int k = 0; k <= n; ++k) {
        if (dp[k].back() == 0) {
            std::cout << k << "\n";
            return;
        }
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0