結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー 👑 rin204rin204
提出日時 2022-12-09 00:11:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 1,000 ms
コード長 1,229 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 210,128 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-10-14 18:17:31
合計ジャッジ時間 12,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,392 KB
testcase_01 AC 9 ms
11,520 KB
testcase_02 AC 8 ms
11,392 KB
testcase_03 AC 261 ms
17,920 KB
testcase_04 AC 73 ms
14,208 KB
testcase_05 AC 329 ms
19,328 KB
testcase_06 AC 67 ms
13,312 KB
testcase_07 AC 169 ms
16,256 KB
testcase_08 AC 229 ms
17,152 KB
testcase_09 AC 32 ms
12,160 KB
testcase_10 AC 247 ms
17,536 KB
testcase_11 AC 105 ms
15,616 KB
testcase_12 AC 29 ms
12,288 KB
testcase_13 AC 73 ms
14,592 KB
testcase_14 AC 172 ms
15,616 KB
testcase_15 AC 178 ms
16,488 KB
testcase_16 AC 149 ms
16,384 KB
testcase_17 AC 218 ms
17,228 KB
testcase_18 AC 267 ms
17,792 KB
testcase_19 AC 216 ms
17,652 KB
testcase_20 AC 7 ms
11,520 KB
testcase_21 AC 255 ms
17,792 KB
testcase_22 AC 81 ms
14,060 KB
testcase_23 AC 90 ms
14,440 KB
testcase_24 AC 340 ms
19,164 KB
testcase_25 AC 273 ms
18,680 KB
testcase_26 AC 185 ms
16,384 KB
testcase_27 AC 96 ms
16,384 KB
testcase_28 AC 6 ms
11,264 KB
testcase_29 AC 7 ms
11,392 KB
testcase_30 AC 8 ms
11,392 KB
testcase_31 AC 9 ms
11,400 KB
testcase_32 AC 11 ms
11,736 KB
testcase_33 AC 20 ms
12,320 KB
testcase_34 AC 39 ms
13,532 KB
testcase_35 AC 83 ms
15,232 KB
testcase_36 AC 144 ms
17,280 KB
testcase_37 AC 222 ms
19,124 KB
testcase_38 AC 300 ms
20,076 KB
testcase_39 AC 377 ms
19,968 KB
testcase_40 AC 418 ms
20,096 KB
testcase_41 AC 455 ms
19,968 KB
testcase_42 AC 464 ms
20,096 KB
testcase_43 AC 484 ms
20,076 KB
testcase_44 AC 499 ms
20,096 KB
testcase_45 AC 530 ms
19,956 KB
testcase_46 AC 502 ms
20,096 KB
testcase_47 AC 6 ms
11,392 KB
testcase_48 AC 307 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define endl '\n'

int main(){
    cin.tie(0)->sync_with_stdio(0);

    int n = 19;
    vector<int> A(n, 0);
    for(int i = 0; i < n; i++){
        int l, a;
        cin >> l;
        for(int j = 0; j < l; j++){
            cin >> a;
            a--;
            A[i] |= 1 << a;
        }
    }

    set<int> se;
    se.insert(0);
    vector<ll> dp_o(1 << n, 0);
    vector<ll> dp_e(1 << n, 0);
    dp_e[0] = 1;
    for(int i = 0; i < n; i++){
        set<int> nse;
        for(auto bit:se){
            int c = 0;
            for(int j = n - 1; j >= 0; j--){
                if(bit >> j & 1) c++;
                else if(A[i] >> j & 1){
                    int nbit = bit | (1 << j);
                    nse.insert(nbit);
                    if(c & 1){
                        dp_e[nbit] += dp_o[bit];
                        dp_o[nbit] += dp_e[bit];
                    }
                    else{
                        dp_e[nbit] += dp_e[bit];
                        dp_o[nbit] += dp_o[bit];
                    }
                }
            }
        }
        swap(se, nse);
    }
    cout << dp_e[(1 << n) - 1] << " " << dp_o[(1 << n) - 1] << endl;
}
0