結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー boutarouboutarou
提出日時 2021-07-31 11:50:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,958 ms / 3,000 ms
コード長 1,340 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 228,024 KB
実行使用メモリ 259,564 KB
最終ジャッジ日時 2024-09-16 09:24:41
合計ジャッジ時間 31,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1,822 ms
247,788 KB
testcase_15 AC 1,941 ms
259,432 KB
testcase_16 AC 1,958 ms
259,436 KB
testcase_17 AC 1,943 ms
259,556 KB
testcase_18 AC 1,947 ms
259,560 KB
testcase_19 AC 1,941 ms
259,436 KB
testcase_20 AC 1,877 ms
259,564 KB
testcase_21 AC 1,681 ms
228,200 KB
testcase_22 AC 1,825 ms
254,824 KB
testcase_23 AC 1,840 ms
254,820 KB
testcase_24 AC 1,834 ms
254,952 KB
testcase_25 AC 1,798 ms
252,260 KB
testcase_26 AC 20 ms
5,376 KB
testcase_27 AC 1,426 ms
187,756 KB
testcase_28 AC 566 ms
80,740 KB
testcase_29 AC 548 ms
82,276 KB
testcase_30 AC 857 ms
119,140 KB
testcase_31 AC 1,410 ms
186,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target ("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < int(n); i++)
using ll = long long;
using P = pair<int, int>;

// i桁まで決定されていて、数字の残りがxで、数字 % K == jとなるものの通り数

int main() {
    cin.tie(0);
    ios_base::sync_with_stdio(false);
    
    int n, K; cin >> n >> K;
    vector<int> c(10);
    rep(i, 9) cin >> c[i + 1];
    vector<int> sum(11);
    rep(i, 10) sum[i + 1] = sum[i] + c[i];
    vector<vector<ll>> dp(1 << n, vector(K, (ll)0));
    dp[0][0] = 1;
    rep(i, n) {
        vector<vector<ll>> dp2(1 << n, vector(K, (ll)0));
        rep(j, 1 << n) {
            rep(k, K) {
                if (dp[j][k] == 0) continue;
                for (int l = 1; l <= 9; l++) {
                    int left = -1;
                    for (int pos = sum[l]; pos < sum[l + 1]; pos++) {
                        if (!(j >> pos & 1)) {
                            left = pos; break;
                        }
                    }
                    if (left == -1) continue;
                    dp2[j | (1 << left)][(k * 10 + l) % K] += dp[j][k];
                }
            }
        }
        dp = dp2;
    }
    cout << dp[(1 << n) - 1][0] << endl;

    return 0;
}
0