結果
問題 | No.1634 Sorting Integers (Multiple of K) Hard |
ユーザー | kotatsugame |
提出日時 | 2021-07-30 22:32:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,692 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 78,224 KB |
実行使用メモリ | 104,960 KB |
最終ジャッジ日時 | 2024-09-16 01:10:15 |
合計ジャッジ時間 | 55,083 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 1,263 ms
104,832 KB |
testcase_05 | AC | 1,264 ms
104,832 KB |
testcase_06 | AC | 1,376 ms
104,832 KB |
testcase_07 | AC | 1,264 ms
104,832 KB |
testcase_08 | AC | 2,162 ms
104,832 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 2,273 ms
104,832 KB |
testcase_12 | AC | 2,674 ms
104,960 KB |
testcase_13 | AC | 2,244 ms
104,832 KB |
testcase_14 | AC | 2,449 ms
104,832 KB |
testcase_15 | AC | 2,463 ms
104,832 KB |
testcase_16 | AC | 2,199 ms
104,832 KB |
testcase_17 | AC | 2,424 ms
104,832 KB |
testcase_18 | AC | 2,214 ms
104,960 KB |
testcase_19 | AC | 2,537 ms
104,832 KB |
testcase_20 | AC | 657 ms
61,440 KB |
testcase_21 | AC | 666 ms
61,440 KB |
testcase_22 | AC | 2,419 ms
104,832 KB |
testcase_23 | AC | 2,616 ms
104,960 KB |
testcase_24 | AC | 2,661 ms
104,960 KB |
testcase_25 | AC | 2,553 ms
104,960 KB |
testcase_26 | AC | 2,443 ms
104,832 KB |
testcase_27 | AC | 2,265 ms
104,832 KB |
testcase_28 | AC | 2,183 ms
104,832 KB |
testcase_29 | AC | 1,963 ms
104,960 KB |
testcase_30 | AC | 1,682 ms
104,832 KB |
testcase_31 | AC | 2,122 ms
104,960 KB |
コンパイルメッセージ
main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 22 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int N,K,c[14]; long V=1; vector<int>A[1<<14]; void dfs(int k,int now,int rest) { if(rest==0) { A[k].push_back(now); } else { for(int i=0;i<N;i++)if(!(k>>i&1)) { dfs(k|1<<i,(now*10L+c[i])%K,rest-1); } } } main() { cin>>N>>K; int sz=0; for(int i=1;i<=9;i++) { int C;cin>>C; for(;C;V*=C--)c[sz++]=i; } long ans=0; dfs(0,0,N/2); if(N%2==0) { long P10=1; for(int i=0;i<N/2;i++)P10=P10*10%K; int comb=(1<<N/2)-1; while(comb<1<<N) { vector<int>Ac=A[comb]; for(int&a:Ac)a=(K-P10*a%K)%K; sort(Ac.begin(),Ac.end()); int u=(1<<N)-1-comb; sort(A[u].begin(),A[u].end()); int ic=0,iu=0; while(ic<Ac.size()&&iu<A[u].size()) { if(Ac[ic]<A[u][iu])ic++; else if(Ac[ic]>A[u][iu])iu++; else { int l=0; int p=A[u][iu]; while(ic<Ac.size()&&p==Ac[ic])ic++,l++; while(iu<A[u].size()&&p==A[u][iu])iu++,ans+=l; } } int x=comb&-comb,y=comb+x; comb=(comb&~y)/x>>1|y; } } else { dfs(0,0,N-N/2); long P10=1; for(int i=0;i<N-N/2;i++)P10=P10*10%K; int comb=(1<<N/2)-1; while(comb<1<<N) { for(int&a:A[comb])a=(K-P10*a%K)%K; sort(A[comb].begin(),A[comb].end()); int u=(1<<N)-1-comb; sort(A[u].begin(),A[u].end()); int ic=0,iu=0; while(ic<A[comb].size()&&iu<A[u].size()) { if(A[comb][ic]<A[u][iu])ic++; else if(A[comb][ic]>A[u][iu])iu++; else { int l=0; int p=A[u][iu]; while(ic<A[comb].size()&&p==A[comb][ic])ic++,l++; while(iu<A[u].size()&&p==A[u][iu])iu++,ans+=l; } } int x=comb&-comb,y=comb+x; comb=(comb&~y)/x>>1|y; } } cout<<ans/V<<endl; }