結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー boutarouboutarou
提出日時 2021-07-31 11:18:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,268 bytes
コンパイル時間 3,957 ms
コンパイル使用メモリ 235,320 KB
実行使用メモリ 230,640 KB
最終ジャッジ日時 2023-10-14 14:46:26
合計ジャッジ時間 11,388 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,696 KB
testcase_01 AC 1 ms
4,352 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 20 ms
5,068 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 1 ms
4,352 KB
testcase_09 AC 3 ms
4,348 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 1 ms
4,352 KB
testcase_14 AC 2,907 ms
163,672 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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桁まで決定されていて、数字の残りがvector<int> aで、数字 % 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<map<pair<vector<int>, int>, ll>> dp(n + 1);
    dp[0][{c, 0}] = 1;
    rep(i, n) {
        for (auto elem : dp[i]) {
            vector<int> left = elem.first.first;
            int mod = elem.first.second;
            ll val = elem.second;
            for (int j = 1; j <= 9; j++) {
                if (left[j] == 0) continue;
                int nmod = (mod * 10 + j) % K; 
                left[j]--;
                dp[i + 1][{left, nmod}] += val;
                left[j]++;
            }
        }
    }
    ll ans = 0;
    for (auto elem : dp[n]) {
        vector<int> left = elem.first.first;
        int mod = elem.first.second;
        ll val = elem.second;
        if (mod == 0) ans += val;
    }
    cout << ans << endl;

    return 0;
}
0