結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー ぷらぷら
提出日時 2021-07-30 22:28:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,361 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 203,532 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-09-16 00:59:59
合計ジャッジ時間 22,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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
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 3 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,787 ms
58,624 KB
testcase_15 AC 1,873 ms
59,520 KB
testcase_16 AC 1,985 ms
57,856 KB
testcase_17 AC 1,620 ms
62,848 KB
testcase_18 AC 1,997 ms
57,344 KB
testcase_19 AC 1,637 ms
62,848 KB
testcase_20 AC 54 ms
17,024 KB
testcase_21 AC 64 ms
5,376 KB
testcase_22 AC 302 ms
26,624 KB
testcase_23 AC 1,786 ms
26,496 KB
testcase_24 AC 912 ms
24,448 KB
testcase_25 AC 194 ms
21,760 KB
testcase_26 WA -
testcase_27 AC 1,220 ms
57,216 KB
testcase_28 AC 641 ms
45,312 KB
testcase_29 AC 558 ms
33,920 KB
testcase_30 AC 676 ms
52,480 KB
testcase_31 AC 1,748 ms
44,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int 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