結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー ぷらぷら
提出日時 2021-07-30 22:29:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,035 ms / 3,000 ms
コード長 1,367 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 203,752 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-09-16 01:03:17
合計ジャッジ時間 22,783 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 7 ms
6,016 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 6 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1,828 ms
94,848 KB
testcase_15 AC 1,914 ms
96,384 KB
testcase_16 AC 2,023 ms
90,880 KB
testcase_17 AC 1,660 ms
109,056 KB
testcase_18 AC 2,035 ms
89,216 KB
testcase_19 AC 1,681 ms
109,056 KB
testcase_20 AC 59 ms
24,704 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 310 ms
39,936 KB
testcase_23 AC 1,797 ms
40,320 KB
testcase_24 AC 920 ms
36,480 KB
testcase_25 AC 203 ms
34,688 KB
testcase_26 AC 57 ms
50,944 KB
testcase_27 AC 1,255 ms
98,560 KB
testcase_28 AC 658 ms
66,048 KB
testcase_29 AC 570 ms
43,904 KB
testcase_30 AC 705 ms
91,008 KB
testcase_31 AC 1,778 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long dp[1 << 14][1000];

int main() {
    int N,K;
    cin >> N >> K;
    vector<int>tmp(N);
    tmp[0] = 1%K;
    for(int i = 1; i < N; i++) {
        tmp[i] = tmp[i-1]*10%K;
    }
    dp[0][0] = 1;
    int cnt = 0;
    for(int i = 1; i <= 9; i++) {
        int a;
        cin >> a;
        cnt += a;
        if(a == 0) {
            continue;
        }
        for(int j = 0; j < (1 << N); j++) {
            if(__builtin_popcount(j) != cnt) {
                continue;
            }
            vector<int>res;
            for(int k = 0; k < N; k++) {
                if(1 & (j >> k)) {
                    res.push_back(k);
                }
            }
            for(int k = 0; k < (1 << res.size()); k++) {
                if(__builtin_popcount(k) != a) {
                    continue;
                }
                long long sum = 0;
                int old = j;
                for(int l = 0; l < res.size(); l++) {
                    if(1 & (k >> l)) {
                        old -= (1 << res[l]);
                        sum += tmp[res[l]]*i;
                    }
                }
                sum %= K;
                for(int l = 0; l < K; l++) {
                    dp[j][(l+sum)%K] += dp[old][l];
                }
            }
        }
    }
    cout << dp[(1 << N)-1][0] << endl;
}
0