結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー KudeKude
提出日時 2022-12-09 01:18:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 503 ms / 1,000 ms
コード長 1,267 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 223,896 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-10-14 18:24:11
合計ジャッジ時間 16,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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];

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