結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-08 14:21:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,606 ms / 3,000 ms
コード長 1,179 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 208,108 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-12-14 19:10:45
合計ジャッジ時間 25,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1,458 ms
125,312 KB
testcase_15 AC 1,525 ms
131,328 KB
testcase_16 AC 1,530 ms
131,200 KB
testcase_17 AC 1,606 ms
131,200 KB
testcase_18 AC 1,525 ms
131,200 KB
testcase_19 AC 1,520 ms
131,200 KB
testcase_20 AC 1,522 ms
131,328 KB
testcase_21 AC 1,342 ms
115,584 KB
testcase_22 AC 1,495 ms
128,896 KB
testcase_23 AC 1,500 ms
128,896 KB
testcase_24 AC 1,500 ms
128,896 KB
testcase_25 AC 1,478 ms
127,744 KB
testcase_26 AC 6 ms
5,248 KB
testcase_27 AC 1,099 ms
95,488 KB
testcase_28 AC 466 ms
41,856 KB
testcase_29 AC 469 ms
42,624 KB
testcase_30 AC 691 ms
61,056 KB
testcase_31 AC 1,091 ms
94,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, k;
    cin >> n >> k;
    vector<int> a;
    vector<int> c(10);
    for (int i = 1; i <= 9; i++) {
        cin >> c[i];
        for (int j = 0; j < c[i]; j++) {
            a.push_back(i);
        }
    }
    long long p10[20];
    p10[0] = 1;
    for (int i = 1; i < 20; i++) {
        p10[i] = p10[i - 1] * 10 % k;
    }
    vector<vector<long long>> dp(1 << n, vector<long long>(k));
    dp[0][0] = 1;
    for (int st = 0; st < (1 << n); st++) {
        int next_i = __builtin_popcount(st);
        for (int j = 0; j < k; j++) {
            for (int l = 0; l < n; l++) {
                if (st & (1 << l)) {
                    continue;
                }
                int next_j = (j + p10[l] * a[next_i]) % k;
                dp[st | (1 << l)][next_j] += dp[st][j];
            }
        }
    }
    long long ans = dp.back()[0];
    for (int i = 1; i < 10; i++) {
        for (int j = 2; j <= c[i]; j++) {
            assert(ans % j == 0);
            ans /= j;
        }
    }
    cout << ans << endl;
}
0