結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー ぷらぷら
提出日時 2022-12-13 06:10:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 914 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 198,716 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-04-24 17:42:39
合計ジャッジ時間 8,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
11,648 KB
testcase_01 AC 73 ms
11,776 KB
testcase_02 AC 59 ms
5,376 KB
testcase_03 AC 101 ms
11,776 KB
testcase_04 AC 87 ms
11,904 KB
testcase_05 AC 96 ms
11,648 KB
testcase_06 AC 87 ms
11,776 KB
testcase_07 AC 95 ms
11,648 KB
testcase_08 AC 99 ms
11,904 KB
testcase_09 AC 91 ms
11,776 KB
testcase_10 AC 88 ms
11,648 KB
testcase_11 AC 89 ms
11,776 KB
testcase_12 AC 92 ms
11,776 KB
testcase_13 AC 87 ms
11,648 KB
testcase_14 AC 101 ms
11,776 KB
testcase_15 AC 98 ms
11,776 KB
testcase_16 AC 86 ms
11,776 KB
testcase_17 AC 86 ms
11,776 KB
testcase_18 AC 100 ms
11,904 KB
testcase_19 AC 94 ms
11,648 KB
testcase_20 AC 82 ms
11,648 KB
testcase_21 AC 86 ms
11,776 KB
testcase_22 AC 99 ms
11,648 KB
testcase_23 AC 87 ms
11,776 KB
testcase_24 AC 97 ms
11,776 KB
testcase_25 AC 92 ms
11,520 KB
testcase_26 AC 96 ms
11,648 KB
testcase_27 AC 78 ms
11,776 KB
testcase_28 AC 68 ms
11,648 KB
testcase_29 AC 69 ms
11,776 KB
testcase_30 AC 70 ms
11,776 KB
testcase_31 AC 71 ms
11,776 KB
testcase_32 AC 77 ms
11,648 KB
testcase_33 AC 76 ms
11,776 KB
testcase_34 AC 77 ms
11,648 KB
testcase_35 AC 78 ms
11,648 KB
testcase_36 AC 81 ms
11,776 KB
testcase_37 AC 83 ms
11,648 KB
testcase_38 AC 86 ms
11,776 KB
testcase_39 AC 92 ms
11,648 KB
testcase_40 AC 96 ms
11,904 KB
testcase_41 AC 103 ms
11,648 KB
testcase_42 AC 111 ms
11,648 KB
testcase_43 AC 112 ms
11,904 KB
testcase_44 AC 120 ms
11,648 KB
testcase_45 AC 123 ms
11,776 KB
testcase_46 AC 120 ms
11,776 KB
testcase_47 AC 63 ms
5,376 KB
testcase_48 AC 103 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long dp[1 << 19][2];

int main() {
    vector<vector<int>>A(19);
    for(int i = 0; i < 19; i++) {
        int L;
        cin >> L;
        A[i].resize(L);
        for(int j = 0; j < L; j++) {
            cin >> A[i][j];
            A[i][j]--;
        }
    }
    dp[0][0] = 1;
    for(int i = 0; i < (1 << 19); i++) {
        vector<int>res(19);
        for(int j = 0; j < 19; j++) {
            if(1 & (i >> j)) res[j] = 1;
        }
        for(int j = 18; j >= 1; j--) res[j-1] ^= res[j];
        int b = __builtin_popcount(i);
        if(b == 19) continue;
        for(int j = 0; j < A[b].size(); j++) {
            if(1 & (i >> A[b][j])) continue;
            dp[i|(1 << A[b][j])][res[A[b][j]]] += dp[i][0];
            dp[i|(1 << A[b][j])][1^res[A[b][j]]] += dp[i][1];
        }
    }
    cout << dp[(1 << 19)-1][0] << " " << dp[(1 << 19)-1][1] << endl;
}
0