結果

問題 No.2669 Generalized Hitting Set
ユーザー kmjpkmjp
提出日時 2024-03-10 11:03:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,825 ms / 4,000 ms
コード長 1,596 bytes
コンパイル時間 2,473 ms
コンパイル使用メモリ 203,000 KB
実行使用メモリ 135,680 KB
最終ジャッジ日時 2024-09-29 21:36:47
合計ジャッジ時間 22,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 219 ms
5,248 KB
testcase_04 AC 184 ms
5,248 KB
testcase_05 AC 147 ms
5,248 KB
testcase_06 AC 283 ms
5,248 KB
testcase_07 AC 40 ms
6,816 KB
testcase_08 AC 61 ms
6,820 KB
testcase_09 AC 177 ms
6,820 KB
testcase_10 AC 102 ms
6,820 KB
testcase_11 AC 46 ms
6,820 KB
testcase_12 AC 205 ms
6,816 KB
testcase_13 AC 1,267 ms
134,380 KB
testcase_14 AC 119 ms
20,320 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 25 ms
8,036 KB
testcase_17 AC 106 ms
20,324 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 13 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 26 ms
8,308 KB
testcase_22 AC 7 ms
6,820 KB
testcase_23 AC 334 ms
6,816 KB
testcase_24 AC 228 ms
6,816 KB
testcase_25 AC 296 ms
8,800 KB
testcase_26 AC 1,312 ms
134,760 KB
testcase_27 AC 159 ms
5,248 KB
testcase_28 AC 1,633 ms
135,552 KB
testcase_29 AC 1,651 ms
135,552 KB
testcase_30 AC 1,687 ms
135,680 KB
testcase_31 AC 1,825 ms
135,680 KB
testcase_32 AC 1,671 ms
135,680 KB
testcase_33 AC 293 ms
6,272 KB
testcase_34 AC 284 ms
5,248 KB
testcase_35 AC 514 ms
36,864 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 50 ms
11,648 KB
testcase_38 AC 4 ms
5,248 KB
testcase_39 AC 1,654 ms
135,680 KB
testcase_40 AC 1,618 ms
135,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------


int N,M,K;
ll dp[1<<24];
ll A[25];
int G[303030];


ll comb(ll P_,ll Q_) {
	if(P_<0 || Q_<0 || Q_>P_) return 0;
	ll p=1,q=1;
	Q_=min(Q_,P_-Q_);
	for(int i=1;i<=Q_;i++) p=p*(P_--)/i;
	
	return p;
}


void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>K;
	FOR(i,M) {
		cin>>s;
		x=0;
		FOR(j,N) if(s[j]=='1') x|=1<<j;
		dp[x]++;
	}
	
	for(i=K;i<=N;i++) {
		A[i]=1;
		for(j=K;j<i;j++) A[i]-=A[j]*comb(i,j);
	}
	
	int mask;
	FOR(i,N) FOR(mask,1<<N) if(mask&(1<<i)) dp[mask^(1<<i)]+=dp[mask];
	FOR(mask,1<<N) dp[mask]*=A[__builtin_popcount(mask)];
	FOR(i,N) FOR(mask,1<<N) if(mask&(1<<i)) dp[mask]+=dp[mask^(1<<i)];
	FOR(i,M+1) G[i]=1<<20;
	
	FOR(mask,1<<N) chmin(G[dp[mask]],__builtin_popcount(mask));
	
	for(i=M-1;i>=0;i--) chmin(G[i],G[i+1]);
	
	for(i=1;i<=M;i++) cout<<G[i]<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0