結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー 👑 p-adicp-adic
提出日時 2022-12-09 19:36:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 1,000 ms
コード長 2,339 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 83,500 KB
実行使用メモリ 63,692 KB
最終ジャッジ日時 2024-04-27 04:19:40
合計ジャッジ時間 12,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
63,084 KB
testcase_01 AC 215 ms
63,368 KB
testcase_02 AC 205 ms
62,352 KB
testcase_03 AC 227 ms
63,176 KB
testcase_04 AC 218 ms
63,424 KB
testcase_05 AC 224 ms
62,216 KB
testcase_06 AC 216 ms
62,172 KB
testcase_07 AC 233 ms
63,032 KB
testcase_08 AC 226 ms
62,040 KB
testcase_09 AC 218 ms
62,316 KB
testcase_10 AC 223 ms
62,832 KB
testcase_11 AC 222 ms
62,336 KB
testcase_12 AC 221 ms
62,900 KB
testcase_13 AC 217 ms
61,952 KB
testcase_14 AC 221 ms
62,172 KB
testcase_15 AC 224 ms
62,996 KB
testcase_16 AC 223 ms
61,408 KB
testcase_17 AC 224 ms
63,164 KB
testcase_18 AC 232 ms
63,248 KB
testcase_19 AC 225 ms
61,696 KB
testcase_20 AC 209 ms
62,736 KB
testcase_21 AC 226 ms
62,856 KB
testcase_22 AC 228 ms
62,948 KB
testcase_23 AC 220 ms
63,584 KB
testcase_24 AC 226 ms
63,408 KB
testcase_25 AC 222 ms
63,692 KB
testcase_26 AC 222 ms
62,796 KB
testcase_27 AC 211 ms
62,772 KB
testcase_28 AC 206 ms
63,268 KB
testcase_29 AC 206 ms
62,196 KB
testcase_30 AC 207 ms
61,540 KB
testcase_31 AC 209 ms
62,952 KB
testcase_32 AC 213 ms
62,492 KB
testcase_33 AC 209 ms
61,544 KB
testcase_34 AC 214 ms
61,540 KB
testcase_35 AC 221 ms
61,920 KB
testcase_36 AC 220 ms
62,080 KB
testcase_37 AC 227 ms
62,752 KB
testcase_38 AC 224 ms
61,544 KB
testcase_39 AC 227 ms
62,432 KB
testcase_40 AC 226 ms
61,548 KB
testcase_41 AC 230 ms
62,152 KB
testcase_42 AC 232 ms
62,412 KB
testcase_43 AC 234 ms
62,068 KB
testcase_44 AC 233 ms
61,692 KB
testcase_45 AC 240 ms
63,008 KB
testcase_46 AC 235 ms
62,192 KB
testcase_47 AC 202 ms
62,148 KB
testcase_48 AC 223 ms
62,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ( "O3" )
#pragma GCC target ( "avx" )
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdint.h>
#include <cassert>
#include <vector>
using namespace std;

using ll = long long;

#define TYPE_OF( VAR ) remove_const<remove_reference<decltype( VAR )>::type >::type
#define UNTIE ios_base::sync_with_stdio( false ); cin.tie( nullptr ) 
#define CEXPR( LL , BOUND , VALUE ) constexpr const LL BOUND = VALUE 
#define CIN( LL , A ) LL A; cin >> A 
#define ASSERT( A , MIN , MAX ) assert( MIN <= A && A <= MAX ) 
#define CIN_ASSERT( A , MIN , MAX ) CIN( TYPE_OF( MAX ) , A ); ASSERT( A , MIN , MAX ) 
#define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( TYPE_OF( FINAL_PLUS_ONE ) VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define FOREQ( VAR , INITIAL , FINAL ) for( TYPE_OF( FINAL ) VAR = INITIAL ; VAR <= FINAL ; VAR ++ ) 
#define QUIT return 0 


int main()
{
  UNTIE;
  CEXPR( int , N , 19 );
  bool M[N][N] = {};
  int Aij_min;
  FOR( i , 0 , N ){
    CIN_ASSERT( Li , 0 , N );
    bool ( &Mi )[N] = M[i];
    Aij_min = 1;
    FOR( j , 0 , Li ){
      CIN_ASSERT( Aij , Aij_min , N );
      Mi[Aij - 1] = true;
      Aij_min = Aij + 1;
    }
  }
  vector<vector<int> > S[N+1]{};
  vector<int> S_int[N+1]{};
  CEXPR( int , PN , 1 << 19 );
  int s_copy , size;
  FOR( s , 0 , PN ){
    s_copy = s;
    vector<int> I{};
    FOR( i , 0 , N ){
      if( s_copy % 2 == 1 ){
	I.push_back( i );
      }
      s_copy /= 2;
      if( s_copy == 0 ){
	break;
      }
    }
    size = I.size();
    S[size].push_back( move( I ) );
    S_int[size].push_back( s );
  }
  static ll det[2][PN] = {};
  ll ( &det0 )[PN] = det[0];
  ll ( &det1 )[PN] = det[1];
  det0[0] = 1;
  det1[0] = 0;
  int i_r , I_j , s , s_sub;
  FOREQ( c , 1 , N ){
    vector<vector<int> >& Sc = S[c];
    vector<int>& Sc_int = S_int[c];
    size = Sc.size();
    FOR( k , 0 , size ){
      vector<int>& I = Sc[k];
      s = Sc_int[k];
      ll& det0s = ( det0[s] = 0 );
      ll& det1s = ( det1[s] = 0 );
      bool ( &Mi )[N] = M[N - c];
      FOR( j , 0 , c ){
	I_j = I[j];
	if( Mi[I_j] ){
	  s_sub = s - ( 1 << I_j );
	  i_r = j % 2;
	  det0s += det[i_r][s_sub];
	  det1s += det[1-i_r][s_sub];
	}
      }
    }
  }
  ll& det0_total = det0[PN-1];
  ll& det1_total = det1[PN-1];
  cout << det0_total << " " << det1_total << "\n";
  QUIT;
}
0