結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー tnakao0123tnakao0123
提出日時 2022-12-09 12:08:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 1,479 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 42,952 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-10-14 18:36:10
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 9 ms
9,344 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 100 ms
11,264 KB
testcase_04 AC 41 ms
9,344 KB
testcase_05 AC 127 ms
11,264 KB
testcase_06 AC 39 ms
9,856 KB
testcase_07 AC 72 ms
9,216 KB
testcase_08 AC 101 ms
10,752 KB
testcase_09 AC 21 ms
11,264 KB
testcase_10 AC 110 ms
11,264 KB
testcase_11 AC 57 ms
11,264 KB
testcase_12 AC 19 ms
9,856 KB
testcase_13 AC 41 ms
9,216 KB
testcase_14 AC 75 ms
10,240 KB
testcase_15 AC 77 ms
9,472 KB
testcase_16 AC 72 ms
10,496 KB
testcase_17 AC 95 ms
11,264 KB
testcase_18 AC 98 ms
11,392 KB
testcase_19 AC 90 ms
11,264 KB
testcase_20 AC 6 ms
5,248 KB
testcase_21 AC 111 ms
11,264 KB
testcase_22 AC 43 ms
11,264 KB
testcase_23 AC 48 ms
9,088 KB
testcase_24 AC 126 ms
11,264 KB
testcase_25 AC 100 ms
11,136 KB
testcase_26 AC 75 ms
11,264 KB
testcase_27 AC 59 ms
11,136 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 6 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 10 ms
7,296 KB
testcase_33 AC 15 ms
9,088 KB
testcase_34 AC 26 ms
10,368 KB
testcase_35 AC 41 ms
10,880 KB
testcase_36 AC 61 ms
11,264 KB
testcase_37 AC 84 ms
11,264 KB
testcase_38 AC 107 ms
11,136 KB
testcase_39 AC 125 ms
11,264 KB
testcase_40 AC 139 ms
11,264 KB
testcase_41 AC 147 ms
11,392 KB
testcase_42 AC 151 ms
11,264 KB
testcase_43 AC 152 ms
11,136 KB
testcase_44 AC 149 ms
11,264 KB
testcase_45 AC 150 ms
11,264 KB
testcase_46 AC 150 ms
11,264 KB
testcase_47 AC 4 ms
5,248 KB
testcase_48 AC 112 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2152.cc:  No.2152 [Cherry Anniversary 2]  19 Petals of Cherry - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int N = 19;
const int NBITS = 1 << N;
const int BN = (N + 1) / 2;
const int BBITS = 1 << BN;

/* typedef */

typedef long long ll;

/* global variables */

int bnums[BBITS], bs[N];
ll dp[NBITS][2];

/* subroutines */

inline int bitnum(int bits) {
  return bnums[bits >> BN] + bnums[bits & (BBITS - 1)];
}

int invcnt(int bits, int i) {
  int c = 0;
  for (int j = i + 1, bj = 1 << j; j < N; j++, bj <<= 1)
    if (bits & bj) c++;
  return c;
}

/* main */

int main() {
  bnums[0] = 0;
  for (int bits = 1, msb = 1; bits < BBITS; bits++) {
    if ((msb << 1) <= bits) msb <<= 1;
    bnums[bits] = bnums[bits ^ msb] + 1;
  }

  for (int i = 0; i < N; i++) {
    int li;
    scanf("%d", &li);
    for (int j = 0; j < li; j++) {
      int aij;
      scanf("%d", &aij), aij--;
      bs[i] |= (1 << aij);
    }
    //printf("bs[%d] = %d\n", i, bs[i]);
  }

  dp[0][0] = 1;

  for (int bits = 0; bits < NBITS - 1; bits++) {
    int b = bs[bitnum(bits)];
    
    for (int j = 0; j < 2; j++)
      if (dp[bits][j] > 0)
	for (int i = 0, bi = 1; i < N; i++, bi <<= 1)
	  if (! (bits & bi) && (b & bi)) {
	    int invc = invcnt(bits, i);
	    int j1 = (j + invc) & 1;
	    dp[bits | bi][j1] += dp[bits][j];
	  }
      }

  printf("%lld %lld\n", dp[NBITS - 1][0], dp[NBITS - 1][1]);
  return 0;
}
0