結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | boutarou |
提出日時 | 2021-07-31 11:18:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 2,455 ms |
コンパイル使用メモリ | 216,900 KB |
実行使用メモリ | 163,584 KB |
最終ジャッジ日時 | 2024-09-16 09:18:31 |
合計ジャッジ時間 | 10,449 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 22 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 | 4 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 | TLE | - |
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 | -- | - |
ソースコード
#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; }