結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | Kude |
提出日時 | 2021-07-30 21:48:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,827 bytes |
コンパイル時間 | 4,691 ms |
コンパイル使用メモリ | 273,556 KB |
実行使用メモリ | 31,360 KB |
最終ジャッジ日時 | 2024-09-15 23:40:47 |
合計ジャッジ時間 | 8,383 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 4 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 232 ms
15,360 KB |
testcase_15 | AC | 297 ms
31,232 KB |
testcase_16 | AC | 289 ms
31,360 KB |
testcase_17 | AC | 289 ms
31,232 KB |
testcase_18 | AC | 289 ms
31,232 KB |
testcase_19 | AC | 291 ms
31,232 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 5 ms
5,376 KB |
testcase_24 | AC | 3 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 176 ms
5,376 KB |
testcase_27 | AC | 104 ms
13,440 KB |
testcase_28 | AC | 93 ms
8,704 KB |
testcase_29 | AC | 16 ms
5,376 KB |
testcase_30 | AC | 73 ms
9,088 KB |
testcase_31 | AC | 76 ms
11,648 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint; int n, k; int c[10]; string s; int CNT = 0; unordered_map<string, unordered_map<int, int>> mp; ll ans; mint P; void dfs1(int rest, int i) { if (rest == 0) { auto& m = mp[s]; do { int r = (mint(stoi(s)) * P).val(); m[r]++; } while(next_permutation(all(s))); return; } if (i == 10) return; for(int cnt = 0; cnt <= min(rest, c[i]); cnt++) { s.append(cnt, '0' + i); dfs1(rest - cnt, i + 1); s.resize(s.size() - cnt); } } string s2; void dfs2(int rest, int i) { if (i == 10) { if (rest) return; auto& m = mp[s]; do { int r = (-mint(stoi(s2))).val(); ans += m[r]; } while(next_permutation(all(s2))); return; } for(int cnt = 0; cnt <= min(rest, c[i]); cnt++) { s2.append(cnt, '0' + i); s.append(c[i] - cnt, '0' + i); dfs2(rest - cnt, i + 1); s.resize(s.size() - (c[i] - cnt)); s2.resize(s2.size() - cnt); } } int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> k; rep(i, 9) cin >> c[i + 1]; mint::set_mod(k); int n1 = n / 2, n2 = n - n1; P = 1; rep(_, n2) P *= 10; dfs1(n1, 1); dfs2(n2, 1); cout << ans << endl; }