結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー Kude
提出日時 2022-12-09 01:22:54
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 397 ms / 1,000 ms
コード長 1,370 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 213,916 KB
最終ジャッジ日時 2025-02-09 06:44:37
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

ll dp[2][1 << 19], ndp[2][1 << 19];
bool pcp[1 << 19];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  for(int i = 1; i < (1 << 19); i++) pcp[i] = 1 ^ pcp[i ^ (i & -i)];
  dp[0][0] = 1;
  rep(i, 19) {
    memset(ndp, 0, sizeof(ndp));
    int l;
    cin >> l;
    rep(_, l) {
      int j;
      cin >> j;
      j--;
      rep(s, 1 << 19) if (!(s >> j & 1)) {
        bool flip = pcp[s & (~0U << j)];
        int ns = s | 1 << j;
        ndp[flip][ns] += dp[0][s];
        ndp[1 ^ flip][ns] += dp[1][s];
      }
    }
    memcpy(dp, ndp, sizeof(dp));
  }
  rep(b, 2) cout << dp[b][(1 << 19) - 1] << " \n"[b + 1 == 2];
}
0