結果
問題 | No.1634 Sorting Integers (Multiple of K) Hard |
ユーザー | milanis48663220 |
提出日時 | 2021-07-30 23:10:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,620 bytes |
コンパイル時間 | 1,517 ms |
コンパイル使用メモリ | 117,964 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 03:15:48 |
合計ジャッジ時間 | 25,925 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 5 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 606 ms
5,376 KB |
testcase_06 | AC | 675 ms
5,376 KB |
testcase_07 | AC | 603 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1,501 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 298 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1,143 ms
5,376 KB |
testcase_23 | AC | 1,277 ms
5,376 KB |
testcase_24 | AC | 1,347 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #include <numeric> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, k; cin >> n >> k; vector<int> c(10); vector<int> u; for(int i = 1; i <= 9; i++) { cin >> c[i]; for(int j = 0; j < c[i]; j++) u.push_back(i); } vector<int> pow10(n); pow10[0] = 1%k; for(int i = 1; i < n; i++){ pow10[i] = (pow10[i-1]*10)%k; } set<vector<int>> st; int m = n/2; auto inv = [&](vector<int> v){ assert(c.size() == 10); vector<int> ans(10); for(int i = 1; i <= 9; i++) ans[i] = c[i]-v[i]; return ans; }; for(int i = 0; i < 1<<n; i++){ vector<int> v(10); for(int j = 0; j < n; j++){ if(i&(1<<j)) v[u[j]]++; } if(accumulate(v.begin(), v.end(), 0) == m){ st.insert(v); } } auto list = [&](vector<int> vv)->map<int, ll>{ vector<int> v; for(int i = 1; i <= 9; i++){ for(int j = 0; j < vv[i]; j++) v.push_back(i); } int n = v.size(); // debug_value(n) vector<int> u(n); for(int i = 0; i < n; i++) u[i] = i; set<int> st; do{ int sum = 0; for(int i = 0; i < n; i++){ sum = sum*10+v[u[i]]; } st.insert(sum); }while(next_permutation(u.begin(), u.end())); map<int, ll> ans; for(int x: st){ int rem = x%k; if(ans.count(rem)) ans[rem]++; else ans[rem] = 1; } return ans; }; auto cnt = [&](vector<int> v)->ll{ auto u = inv(v); auto mpv = list(v); auto mpu = list(u); ll ans = 0; for(auto [x, c]: mpv){ int rem = (k-x*pow10[n-m])%k; rem = (rem+k)%k; // debug_value(rem) if(mpu.count(rem) > 0) ans += mpu[rem]*c; } return ans; }; ll ans = 0; for(auto v: st) ans += cnt(v); cout << ans << endl; }