結果
問題 | No.2152 [Cherry Anniversary 2] 19 Petals of Cherry |
ユーザー | hotman78 |
提出日時 | 2022-12-09 07:19:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 787 bytes |
コンパイル時間 | 1,909 ms |
コンパイル使用メモリ | 201,972 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-10-14 18:33:44 |
合計ジャッジ時間 | 5,725 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
7,424 KB |
testcase_01 | AC | 56 ms
7,424 KB |
testcase_02 | AC | 43 ms
7,552 KB |
testcase_03 | WA | - |
testcase_04 | AC | 54 ms
7,552 KB |
testcase_05 | WA | - |
testcase_06 | AC | 55 ms
7,424 KB |
testcase_07 | AC | 57 ms
7,552 KB |
testcase_08 | AC | 52 ms
7,552 KB |
testcase_09 | AC | 59 ms
7,552 KB |
testcase_10 | WA | - |
testcase_11 | AC | 53 ms
7,552 KB |
testcase_12 | AC | 55 ms
7,552 KB |
testcase_13 | AC | 57 ms
7,552 KB |
testcase_14 | AC | 56 ms
7,552 KB |
testcase_15 | AC | 56 ms
7,424 KB |
testcase_16 | AC | 56 ms
7,552 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 55 ms
7,424 KB |
testcase_21 | AC | 61 ms
7,424 KB |
testcase_22 | AC | 59 ms
7,552 KB |
testcase_23 | AC | 59 ms
7,552 KB |
testcase_24 | WA | - |
testcase_25 | AC | 56 ms
7,552 KB |
testcase_26 | WA | - |
testcase_27 | AC | 52 ms
7,552 KB |
testcase_28 | AC | 47 ms
7,552 KB |
testcase_29 | AC | 49 ms
7,552 KB |
testcase_30 | AC | 53 ms
7,552 KB |
testcase_31 | AC | 54 ms
7,424 KB |
testcase_32 | AC | 54 ms
7,424 KB |
testcase_33 | AC | 56 ms
7,552 KB |
testcase_34 | AC | 56 ms
7,552 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 42 ms
7,552 KB |
testcase_48 | AC | 60 ms
7,552 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<n;++i) int main(){ constexpr int n=19; array<int,n>l; array<bitset<n>,n>a; rep(i,n){ a[n-1-i]=bitset<n>(); cin>>l[n-1-i]; rep(j,l[n-1-i]){ int x; cin>>x; x--; a[n-1-i][x]=1; } } array<array<int,(1<<n)>,2>dp; rep(i,2)dp[i].fill(0); dp[0][0]=1; rep(d,(1<<n)-1){ bool cnt=0; int k=__builtin_popcount(d); rep(j,n){ if(d>>j&1){ cnt^=1; }else{ if(a[k][j]){ rep(t,2)dp[t^cnt][d+(1<<j)]+=dp[t][d]; } } } } cout<<dp[0][(1<<n)-1]<<" "<<dp[1][(1<<n)-1]<<endl; }