結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー roarisroaris
提出日時 2022-12-09 01:15:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 904 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 201,180 KB
実行使用メモリ 19,884 KB
最終ジャッジ日時 2024-10-14 18:23:51
合計ジャッジ時間 27,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
19,712 KB
testcase_01 AC 303 ms
19,712 KB
testcase_02 AC 35 ms
19,712 KB
testcase_03 AC 719 ms
19,712 KB
testcase_04 AC 550 ms
19,840 KB
testcase_05 AC 554 ms
19,712 KB
testcase_06 AC 546 ms
19,708 KB
testcase_07 AC 509 ms
19,712 KB
testcase_08 AC 539 ms
19,712 KB
testcase_09 AC 449 ms
19,840 KB
testcase_10 AC 540 ms
19,712 KB
testcase_11 AC 532 ms
19,712 KB
testcase_12 AC 407 ms
19,712 KB
testcase_13 AC 419 ms
19,712 KB
testcase_14 AC 544 ms
19,840 KB
testcase_15 AC 559 ms
19,748 KB
testcase_16 AC 463 ms
19,812 KB
testcase_17 AC 521 ms
19,840 KB
testcase_18 AC 586 ms
19,704 KB
testcase_19 AC 568 ms
19,868 KB
testcase_20 AC 341 ms
19,712 KB
testcase_21 AC 507 ms
19,712 KB
testcase_22 AC 502 ms
19,712 KB
testcase_23 AC 451 ms
19,820 KB
testcase_24 AC 686 ms
19,756 KB
testcase_25 AC 493 ms
19,776 KB
testcase_26 AC 590 ms
19,712 KB
testcase_27 AC 498 ms
19,764 KB
testcase_28 AC 87 ms
19,840 KB
testcase_29 AC 139 ms
19,776 KB
testcase_30 AC 190 ms
19,712 KB
testcase_31 AC 241 ms
19,840 KB
testcase_32 AC 290 ms
19,712 KB
testcase_33 AC 359 ms
19,712 KB
testcase_34 AC 394 ms
19,840 KB
testcase_35 AC 447 ms
19,708 KB
testcase_36 AC 509 ms
19,884 KB
testcase_37 AC 552 ms
19,840 KB
testcase_38 AC 607 ms
19,824 KB
testcase_39 AC 657 ms
19,712 KB
testcase_40 AC 724 ms
19,840 KB
testcase_41 AC 758 ms
19,712 KB
testcase_42 AC 810 ms
19,684 KB
testcase_43 AC 924 ms
19,840 KB
testcase_44 AC 911 ms
19,584 KB
testcase_45 TLE -
testcase_46 AC 973 ms
19,712 KB
testcase_47 AC 34 ms
19,840 KB
testcase_48 AC 631 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    int N = 19;
    ll dp[1<<N][2];
    rep(S, 1<<N) rep(i, 2) dp[S][i] = 0ll;
    dp[0][0] = 1ll;
    
    rep(t, N) {
        ll ndp[1<<N][2];
        rep(S, 1<<N) rep(i, 2) ndp[S][i] = 0ll;
        int L; cin >> L;
        
        while (L--) {
            int A; cin >> A; A--;
            rep(S, 1<<N) {
                if ((S>>A)&1) continue;
                int inv = 0;
                for (int i=A+1; i<N; i++) if ((S>>i)&1) inv++;
                ndp[S|(1<<A)][inv%2] += dp[S][0];
                ndp[S|(1<<A)][(inv%2+1)%2] += dp[S][1];
            }
        }
        
        rep(S, 1<<N) rep(i, 2) dp[S][i] = ndp[S][i];
    }
    
    cout << dp[(1<<N)-1][0] << " " << dp[(1<<N)-1][1] << endl;
}
0