結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー umezoumezo
提出日時 2022-12-09 00:33:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 755 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 202,876 KB
実行使用メモリ 159,232 KB
最終ジャッジ日時 2024-10-14 18:20:32
合計ジャッジ時間 39,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
122,240 KB
testcase_01 AC 401 ms
159,104 KB
testcase_02 AC 9 ms
5,248 KB
testcase_03 TLE -
testcase_04 AC 802 ms
153,472 KB
testcase_05 AC 794 ms
159,104 KB
testcase_06 AC 853 ms
153,728 KB
testcase_07 AC 755 ms
155,008 KB
testcase_08 AC 824 ms
150,656 KB
testcase_09 AC 641 ms
155,264 KB
testcase_10 AC 809 ms
158,208 KB
testcase_11 AC 827 ms
159,104 KB
testcase_12 AC 599 ms
159,104 KB
testcase_13 AC 639 ms
151,936 KB
testcase_14 AC 779 ms
155,136 KB
testcase_15 AC 835 ms
157,056 KB
testcase_16 AC 663 ms
156,800 KB
testcase_17 AC 767 ms
159,232 KB
testcase_18 AC 840 ms
155,008 KB
testcase_19 AC 823 ms
159,104 KB
testcase_20 AC 500 ms
147,072 KB
testcase_21 AC 692 ms
155,008 KB
testcase_22 AC 714 ms
157,568 KB
testcase_23 AC 660 ms
155,008 KB
testcase_24 AC 996 ms
159,232 KB
testcase_25 AC 705 ms
159,104 KB
testcase_26 AC 882 ms
159,104 KB
testcase_27 AC 740 ms
155,008 KB
testcase_28 AC 147 ms
122,240 KB
testcase_29 AC 211 ms
142,592 KB
testcase_30 AC 268 ms
151,936 KB
testcase_31 AC 327 ms
156,032 KB
testcase_32 AC 389 ms
157,824 KB
testcase_33 AC 451 ms
158,592 KB
testcase_34 AC 532 ms
158,848 KB
testcase_35 AC 612 ms
159,104 KB
testcase_36 AC 687 ms
159,104 KB
testcase_37 AC 777 ms
159,104 KB
testcase_38 AC 855 ms
159,232 KB
testcase_39 AC 966 ms
159,104 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 9 ms
5,248 KB
testcase_48 AC 947 ms
151,040 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];
ll x=(1<<19)-1;
vector<int> A[20];
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  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;
        int cnt=0;
        for(int l=a+1;l<19;l++){
          if(j&(1<<l)) cnt++;
        }
        rep(k,2) dp[i][j|(1<<a)][(k+cnt)%2]+=dp[i-1][j][k];
      }
    }
  }
  cout<<dp[19][x][0]<<" "<<dp[19][x][1]<<endl;
  
  return 0;
}
0