結果

問題 No.2669 Generalized Hitting Set
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-03-08 21:57:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,586 ms / 4,000 ms
コード長 2,632 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 114,332 KB
実行使用メモリ 142,048 KB
最終ジャッジ日時 2024-09-29 19:37:04
合計ジャッジ時間 19,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 29 ms
8,320 KB
testcase_04 AC 23 ms
7,424 KB
testcase_05 AC 20 ms
6,784 KB
testcase_06 AC 35 ms
9,344 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 24 ms
7,168 KB
testcase_10 AC 14 ms
5,504 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 31 ms
8,064 KB
testcase_13 AC 1,463 ms
134,528 KB
testcase_14 AC 114 ms
19,840 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 27 ms
7,552 KB
testcase_17 AC 114 ms
19,840 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 15 ms
5,504 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 28 ms
7,544 KB
testcase_22 AC 7 ms
5,248 KB
testcase_23 AC 55 ms
10,368 KB
testcase_24 AC 35 ms
8,320 KB
testcase_25 AC 75 ms
13,184 KB
testcase_26 AC 1,508 ms
135,568 KB
testcase_27 AC 34 ms
7,676 KB
testcase_28 AC 1,576 ms
141,792 KB
testcase_29 AC 1,565 ms
142,048 KB
testcase_30 AC 1,586 ms
141,696 KB
testcase_31 AC 1,583 ms
141,824 KB
testcase_32 AC 1,543 ms
141,728 KB
testcase_33 AC 59 ms
10,880 KB
testcase_34 AC 47 ms
9,640 KB
testcase_35 AC 343 ms
40,928 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 58 ms
11,628 KB
testcase_38 AC 5 ms
5,248 KB
testcase_39 AC 1,539 ms
141,896 KB
testcase_40 AC 1,559 ms
141,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


int N, M, K;
char S[300'010][25];

Int bn[25][25], pie[25];

int main() {
  for (; ~scanf("%d%d%d", &N, &M, &K); ) {
    for (int i = 0; i < M; ++i) {
      scanf("%s", S[i]);
    }
    
    for (int n = 0; n <= N; ++n) {
      bn[n][0] = bn[n][n] = 1;
      for (int k = 1; k < n; ++k) {
        bn[n][k] = bn[n - 1][k - 1] + bn[n - 1][k];
      }
    }
    for (int n = 0; n <= N; ++n) {
      pie[n] = (n >= K) ? 1 : 0;
      for (int k = 0; k < n; ++k) {
        pie[n] -= bn[n][k] * pie[k];
      }
    }
cerr<<"pie = ";pv(pie,pie+(N+1));
    
    vector<Int> fs(1 << N, 0);
    for (int i = 0; i < M; ++i) {
      int p = 0;
      for (int e = 0; e < N; ++e) p |= (S[i][e] - '0') << e;
      ++fs[p];
    }
    for (int e = 0; e < N; ++e) {
      for (int p = 0; p < 1 << N; ++p) if (!(p & 1 << e)) {
        fs[p] += fs[p | 1 << e];
      }
    }
    for (int p = 0; p < 1 << N; ++p) {
      fs[p] *= pie[__builtin_popcount(p)];
    }
    for (int e = 0; e < N; ++e) {
      for (int p = 0; p < 1 << N; ++p) if (!(p & 1 << e)) {
        fs[p | 1 << e] += fs[p];
      }
    }
    vector<Int> mxs(N + 1, 0);
    for (int p = 0; p < 1 << N; ++p) {
      chmax(mxs[__builtin_popcount(p)], fs[p]);
    }
cerr<<"mxs = "<<mxs<<endl;
    
    for (int m = 1; m <= M; ++m) {
      const int ans = lower_bound(mxs.begin(), mxs.end(), m) - mxs.begin();
      printf("%d\n", ans);
    }
  }
  return 0;
}
0