結果
問題 |
No.1631 Sorting Integers (Multiple of K) Easy
|
ユーザー |
|
提出日時 | 2021-07-31 11:42:51 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,515 bytes |
コンパイル時間 | 10,483 ms |
コンパイル使用メモリ | 283,424 KB |
最終ジャッジ日時 | 2025-01-23 13:01:53 |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 11 MLE * 17 |
ソースコード
#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桁まで決定されていて、数字の残りがxで、数字 % 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<int> sum(11); rep(i, 10) sum[i + 1] = sum[i] + c[i]; vector<vector<vector<ll>>> dp(n + 1, vector<vector<ll>>(1 << n, vector<ll>(K, 0))); dp[0][0][0] = 1; rep(i, n) { rep(j, 1 << n) { rep(k, K) { if (dp[i][j][k] == 0) continue; for (int l = 1; l <= 9; l++) { int left = -1; for (int pos = sum[l]; pos < sum[l + 1]; pos++) { if (!(j >> pos & 1)) { left = pos; break; } } if (left == -1) continue; dp[i + 1][j | (1 << left)][(k * 10 + l) % K] += dp[i][j][k]; } } } } rep(i, n + 1) { rep(j, 1 << n) { rep(k, K) { // cout << "{" << i << " " << j << " " << k << "}" << " " << dp[i][j][k] << endl; } } } cout << dp[n][(1 << n) - 1][0] << endl; return 0; }