結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | ぷら |
提出日時 | 2021-07-30 22:12:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,262 bytes |
コンパイル時間 | 2,101 ms |
コンパイル使用メモリ | 202,728 KB |
実行使用メモリ | 276,864 KB |
最終ジャッジ日時 | 2024-09-16 00:33:30 |
合計ジャッジ時間 | 6,859 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 18 ms
5,632 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 | 12 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
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; int dp[1 << 14][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][0] = 1; int cnt = 0; for(int i = 1; i <= 9; i++) { int a; cin >> a; for(int j = 0; j < a; j++) { for(int k = 0; k < (1 << N); k++) { if(__builtin_popcount(k) != cnt) { continue; } for(int l = 0; l < N; l++) { for(int o = 0; o < K; o++) { for(int m = l; m < N; m++) { if(1 & (k >> m)) { continue; } if(j+1 == a) { dp[k|(1 << m)][0][(o+tmp[m]*i)%K] += dp[k][l][o]; } else if(m+1 < N) { dp[k|(1 << m)][m+1][(o+tmp[m]*i)%K] += dp[k][l][o]; } } } } } cnt++; } } cout << dp[(1 << N)-1][0][0] << endl; }