結果
| 問題 |
No.1634 Sorting Integers (Multiple of K) Hard
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-07-31 02:25:21 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 450 ms / 3,000 ms |
| コード長 | 1,770 bytes |
| コンパイル時間 | 2,404 ms |
| コンパイル使用メモリ | 197,032 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-16 05:24:01 |
| 合計ジャッジ時間 | 11,044 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 28 |
ソースコード
//#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;
vector<vector<int>> BOX;
//max C size 通りの全列挙
void next_combination(int size,int max, vector<int> now_vector) {
int now_size = now_vector.size();
if (now_size == size) {
BOX.push_back(now_vector);
}
else {
vector<int> next = now_vector;
if (now_size == 0) {
for (ll i = 0; i < max; i++) {
next.push_back(i);
next_combination(size, max, next);
next.pop_back();
}
}
else {
ll LAST = next[now_size - 1];
for (ll i = LAST + 1; i < max; i++) {
next.push_back(i);
next_combination(size, max, next);
next.pop_back();
}
}
}
return;
}
int main() {
int N, K;
cin >> N >> K;
vector<int> C(9);
vector<int> D;
rep(i, 9) {
cin >> C[i];
rep(j, C[i])D.push_back(i + 1);
}
int n=N/2;
next_combination(n, N, {});
ll an = 0;
set<string> Poo;
vll kkk(N,1);
rep(i,N-1){
kkk[i+1]=kkk[i]*10;
kkk[i+1]%=K;
}
rep(i, BOX.size()) {
unordered_map<ll, ll> M1;
vector<int> AUU = BOX[i];
string AU;
set<int> S;
rep(k, n) {
S.insert(AUU[k]);
AU.push_back(D[AUU[k]]);
}
if (Poo.count(AU))continue;
Poo.insert(AU);
string BU;
rep(k, N) {
if (!S.count(k))BU.push_back(D[k]);
}
ll x = 0;
do {
x=0;
rep(u, n) {
x += (AU[u]) * kkk[u];
}
x %= K;
M1[x]++;
} while (next_permutation(all(AU)));
do {
x = 0;
rep(u, N-n) {
x += (BU[u]) * kkk[u+N/2];
}
x%=K;
if (x == 0)x += K;
an += M1[K - x];
} while (next_permutation(all(BU)));
}
cout << an << endl;
}