結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー umezoumezo
提出日時 2022-12-09 00:52:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 205,176 KB
実行使用メモリ 202,712 KB
最終ジャッジ日時 2024-10-14 18:22:25
合計ジャッジ時間 31,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
164,192 KB
testcase_01 AC 325 ms
200,064 KB
testcase_02 AC 29 ms
44,268 KB
testcase_03 AC 871 ms
200,192 KB
testcase_04 AC 611 ms
194,560 KB
testcase_05 AC 576 ms
200,064 KB
testcase_06 AC 627 ms
194,288 KB
testcase_07 AC 580 ms
195,968 KB
testcase_08 AC 631 ms
191,700 KB
testcase_09 AC 494 ms
196,096 KB
testcase_10 AC 626 ms
199,040 KB
testcase_11 AC 619 ms
200,124 KB
testcase_12 AC 458 ms
200,064 KB
testcase_13 AC 479 ms
192,896 KB
testcase_14 AC 569 ms
196,096 KB
testcase_15 AC 628 ms
198,144 KB
testcase_16 AC 512 ms
197,760 KB
testcase_17 AC 556 ms
200,200 KB
testcase_18 AC 630 ms
196,096 KB
testcase_19 AC 622 ms
200,064 KB
testcase_20 AC 406 ms
188,032 KB
testcase_21 AC 520 ms
195,968 KB
testcase_22 AC 550 ms
198,656 KB
testcase_23 AC 503 ms
195,840 KB
testcase_24 AC 730 ms
200,064 KB
testcase_25 AC 541 ms
200,064 KB
testcase_26 AC 658 ms
200,192 KB
testcase_27 AC 543 ms
196,096 KB
testcase_28 AC 185 ms
163,072 KB
testcase_29 AC 224 ms
183,680 KB
testcase_30 AC 251 ms
193,024 KB
testcase_31 AC 276 ms
196,992 KB
testcase_32 AC 304 ms
198,784 KB
testcase_33 AC 342 ms
199,552 KB
testcase_34 AC 366 ms
199,936 KB
testcase_35 AC 427 ms
200,064 KB
testcase_36 AC 483 ms
199,936 KB
testcase_37 AC 544 ms
200,192 KB
testcase_38 AC 611 ms
200,192 KB
testcase_39 AC 675 ms
200,192 KB
testcase_40 AC 735 ms
200,064 KB
testcase_41 AC 809 ms
200,064 KB
testcase_42 AC 887 ms
200,064 KB
testcase_43 AC 975 ms
199,936 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 42 ms
44,416 KB
testcase_48 AC 694 ms
191,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll dp[20][530000][2];
int B[1<<19][20];
int x=(1<<19)-1;
vector<int> A[20];
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  for(int i=0;i<(1<<19);i++){
    int cnt=0;
    for(int j=18;j>=0;j--){
      if(i&(1<<j)) cnt++;
      B[i][j]=cnt;
    }
  }
  
  rep(i,19){
    int l;
    cin>>l;
    rep(_,l){
      int a;
      cin>>a;
      a--;
      A[i+1].push_back(a);
    }
  }
  
  dp[0][0][0]=1;
  for(int i=1;i<=19;i++){
    rep(j,1<<19){
      for(auto a:A[i]){
        if(j&(1<<a)) continue;
        rep(k,2) dp[i][j|(1<<a)][(k+B[j][a+1])%2]+=dp[i-1][j][k];
      }
    }
  }
  cout<<dp[19][x][0]<<" "<<dp[19][x][1]<<endl;
  
  return 0;
}
0