結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | 👑Zack Ni |
提出日時 | 2021-08-02 09:48:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 466 ms / 3,000 ms |
コード長 | 2,889 bytes |
コンパイル時間 | 2,246 ms |
コンパイル使用メモリ | 176,812 KB |
実行使用メモリ | 132,864 KB |
最終ジャッジ日時 | 2024-09-16 13:07:03 |
合計ジャッジ時間 | 9,592 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 4 ms
5,888 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 447 ms
132,608 KB |
testcase_15 | AC | 463 ms
132,736 KB |
testcase_16 | AC | 466 ms
132,736 KB |
testcase_17 | AC | 450 ms
132,736 KB |
testcase_18 | AC | 446 ms
132,736 KB |
testcase_19 | AC | 445 ms
132,608 KB |
testcase_20 | AC | 458 ms
132,736 KB |
testcase_21 | AC | 400 ms
132,736 KB |
testcase_22 | AC | 437 ms
132,608 KB |
testcase_23 | AC | 437 ms
132,864 KB |
testcase_24 | AC | 433 ms
132,736 KB |
testcase_25 | AC | 428 ms
132,736 KB |
testcase_26 | AC | 44 ms
68,992 KB |
testcase_27 | AC | 348 ms
132,736 KB |
testcase_28 | AC | 182 ms
107,136 KB |
testcase_29 | AC | 194 ms
107,520 KB |
testcase_30 | AC | 253 ms
126,336 KB |
testcase_31 | AC | 350 ms
132,736 KB |
ソースコード
#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); // }