結果
問題 | No.2669 Generalized Hitting Set |
ユーザー | kotatsugame |
提出日時 | 2024-03-08 22:35:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,308 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 70,840 KB |
実行使用メモリ | 336,680 KB |
最終ジャッジ日時 | 2024-09-29 20:04:54 |
合計ジャッジ時間 | 8,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 49 ms
136,516 KB |
testcase_02 | AC | 55 ms
135,088 KB |
testcase_03 | AC | 72 ms
137,284 KB |
testcase_04 | AC | 55 ms
137,028 KB |
testcase_05 | AC | 51 ms
136,648 KB |
testcase_06 | AC | 84 ms
136,768 KB |
testcase_07 | AC | 49 ms
136,640 KB |
testcase_08 | AC | 43 ms
134,972 KB |
testcase_09 | AC | 54 ms
135,316 KB |
testcase_10 | AC | 48 ms
136,900 KB |
testcase_11 | AC | 41 ms
136,768 KB |
testcase_12 | AC | 59 ms
135,436 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#include<iostream> #include<cassert> #include<atcoder/modint> using namespace std; using mint=atcoder::static_modint<999000061>; int N,M,K; int cnt[1<<24]; mint now[1<<24]; mint ALL[1<<24]; mint comb[25][25],coef[25][25]; int ans[3<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M>>K; for(int i=0;i<M;i++) { string s;cin>>s; int S=0; for(int j=0;j<N;j++)if(s[j]=='1')S|=1<<j; cnt[S]++; } for(int k=0;k<N;k++)for(int i=0;i<1<<N;i++)if(i>>k&1)cnt[i^1<<k]+=cnt[i]; for(int i=0;i<=N;i++) { comb[i][0]=comb[i][i]=1; for(int j=1;j<i;j++)comb[i][j]=comb[i-1][j-1]+comb[i-1][j]; } for(int k=K;k<=N;k++)coef[k][k]=1; for(int k=N-1;k>=K;k--) { for(int i=k+1;i<=N;i++) { for(int j=1;j<=N;j++)coef[k][j]-=coef[i][j]*comb[i][k]; } } for(int k=K;k<=N;k++) { for(int i=0;i<1<<N;i++)now[i]=__builtin_popcount(i)==k?mint::raw(cnt[i]):0; for(int k=0;k<N;k++)for(int i=0;i<1<<N;i++)if(i>>k&1)now[i]+=now[i^1<<k]; mint c=0; for(int i=k;i>=K;i--)c+=coef[i][k]; for(int i=0;i<1<<N;i++)ALL[i]+=c*now[i]; } for(int i=0;i<=M;i++)ans[i]=1e9; for(int i=0;i<1<<N;i++) { int t=ALL[i].val(); assert(0<=t&&t<=M); ans[t]=min(ans[t],__builtin_popcount(i)); } for(int i=M;i>=1;i--)ans[i-1]=min(ans[i-1],ans[i]); for(int i=1;i<=M;i++)cout<<ans[i]<<"\n"; }