結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-08 14:21:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,589 ms / 3,000 ms
コード長 1,179 bytes
コンパイル時間 3,320 ms
コンパイル使用メモリ 209,924 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-05-08 14:22:00
合計ジャッジ時間 26,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 1,498 ms
125,440 KB
testcase_15 AC 1,567 ms
131,328 KB
testcase_16 AC 1,558 ms
131,328 KB
testcase_17 AC 1,563 ms
131,328 KB
testcase_18 AC 1,562 ms
131,328 KB
testcase_19 AC 1,569 ms
131,328 KB
testcase_20 AC 1,589 ms
131,328 KB
testcase_21 AC 1,391 ms
115,712 KB
testcase_22 AC 1,535 ms
129,024 KB
testcase_23 AC 1,539 ms
129,024 KB
testcase_24 AC 1,541 ms
129,024 KB
testcase_25 AC 1,518 ms
127,744 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 1,135 ms
95,488 KB
testcase_28 AC 494 ms
41,984 KB
testcase_29 AC 470 ms
42,752 KB
testcase_30 AC 693 ms
61,184 KB
testcase_31 AC 1,131 ms
95,104 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