結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー 👑Zack Ni👑Zack Ni
提出日時 2021-08-02 09:48:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 3,000 ms
コード長 2,889 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 174,080 KB
実行使用メモリ 136,628 KB
最終ジャッジ日時 2023-10-14 19:08:12
合計ジャッジ時間 10,452 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,348 KB
testcase_01 AC 2 ms
5,360 KB
testcase_02 AC 2 ms
5,556 KB
testcase_03 AC 4 ms
8,656 KB
testcase_04 AC 2 ms
5,392 KB
testcase_05 AC 2 ms
5,340 KB
testcase_06 AC 2 ms
5,356 KB
testcase_07 AC 2 ms
5,404 KB
testcase_08 AC 2 ms
5,400 KB
testcase_09 AC 3 ms
6,340 KB
testcase_10 AC 2 ms
5,956 KB
testcase_11 AC 3 ms
6,204 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 2 ms
5,908 KB
testcase_14 AC 474 ms
134,880 KB
testcase_15 AC 446 ms
136,396 KB
testcase_16 AC 447 ms
136,412 KB
testcase_17 AC 447 ms
136,448 KB
testcase_18 AC 450 ms
136,452 KB
testcase_19 AC 448 ms
136,628 KB
testcase_20 AC 449 ms
136,488 KB
testcase_21 AC 402 ms
136,452 KB
testcase_22 AC 441 ms
136,396 KB
testcase_23 AC 444 ms
136,464 KB
testcase_24 AC 437 ms
136,548 KB
testcase_25 AC 440 ms
136,376 KB
testcase_26 AC 29 ms
135,372 KB
testcase_27 AC 331 ms
136,612 KB
testcase_28 AC 157 ms
136,044 KB
testcase_29 AC 158 ms
136,208 KB
testcase_30 AC 221 ms
136,288 KB
testcase_31 AC 332 ms
136,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
inline int my_getchar(){
  static char buf[1048576];
  static int s = 1048576;
  static int e = 1048576;
  if(s == e && e == 1048576){
    e = fread(buf, 1, 1048576, stdin);
    s = 0;
  }
  if(s == e){
    return EOF;
  }
  return buf[s++];
}
inline void rd(int &x){
  int k;
  int m=0;
  x=0;
  for(;;){
    k = my_getchar();
    if(k=='-'){
      m=1;
      break;
    }
    if('0'<=k&&k<='9'){
      x=k-'0';
      break;
    }
  }
  for(;;){
    k = my_getchar();
    if(k<'0'||k>'9'){
      break;
    }
    x=x*10+k-'0';
  }
  if(m){
    x=-x;
  }
}
struct MY_WRITER{
  char buf[1048576];
  int s;
  int e;
  MY_WRITER(){
    s = 0;
    e = 1048576;
  }
  ~MY_WRITER(){
    if(s){
      fwrite(buf, 1, s, stdout);
    }
  }
}
;
MY_WRITER MY_WRITER_VAR;
void my_putchar(int a){
  if(MY_WRITER_VAR.s == MY_WRITER_VAR.e){
    fwrite(MY_WRITER_VAR.buf, 1, MY_WRITER_VAR.s, stdout);
    MY_WRITER_VAR.s = 0;
  }
  MY_WRITER_VAR.buf[MY_WRITER_VAR.s++] = a;
}
inline void wt_L(char a){
  my_putchar(a);
}
inline void wt_L(long long x){
  int s=0;
  int m=0;
  char f[20];
  if(x<0){
    m=1;
    x=-x;
  }
  while(x){
    f[s++]=x%10;
    x/=10;
  }
  if(!s){
    f[s++]=0;
  }
  if(m){
    my_putchar('-');
  }
  while(s--){
    my_putchar(f[s]+'0');
  }
}
int N;
int K;
long long dp[1<<15][1000+10];
int c[100];
int* d = &c[1];
int u[20];
int usz;
int main(){
  int S, i;
  rd(N);
  rd(K);
  {
    int PiIOrLma;
    for(PiIOrLma=(0);PiIOrLma<(9);PiIOrLma++){
      rd(d[PiIOrLma]);
    }
  }
  long long overcounted = 1;
  for(i=(0);i<(10);i++){
    int j;
    for(j=(0);j<(c[i]);j++){
      u[usz++] = i;
      overcounted *= (long long)(j+1);
    }
  }
  dp[0][0] = 1;
  for(S=(0);S<((1 << usz));S++){
    int x;
    for(x=(0);x<(usz);x++){
      int j;
      if(((S) &(1<<(x)))){
        continue;
      }
      int unions  = S | (1 << x);
      int digits0;
      digits0 = u[x];
      for(j=(0);j<(K);j++){
        dp[unions][(j * 10 + digits0)%K] += dp[S][j];
      }
    }
  }
  wt_L(dp[(1<<usz) - 1][0]/overcounted);
  wt_L('\n');
  return 0;
}
// cLay version 20210405-1

// --- original code ---
// //no-unlocked
// int N, K;
// ll dp[1<<15][1d3+10];
// int c[100];
// int * d = &c[1];
// int u[20];
// int usz;
// {  
//     rd(N, K, d(9));
//     ll overcounted = 1; 
//     rep(i, 10){
//         rep(j, c[i]){
//             u[usz++] = i;
//             overcounted *= (ll)(j+1);
//         }
//     }
//     dp[0][0] = 1;
//     rep(S, (1 << usz)){
//         rep(x, usz){
//             if(BIT_ith(S, x)) continue;
//             int unions  = S | (1 << x);
//             int digits0;
//             digits0 = u[x];
//             rep(j, K){
//                 dp[unions][(j * 10 + digits0)%K] += dp[S][j];
//             }
//         }
//     }
//     wt(dp[(1<<usz) - 1][0]/overcounted);
// }
0