結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
58,624 KB
testcase_01 AC 524 ms
58,624 KB
testcase_02 AC 87 ms
58,732 KB
testcase_03 TLE -
testcase_04 AC 855 ms
58,596 KB
testcase_05 AC 867 ms
58,624 KB
testcase_06 AC 857 ms
58,752 KB
testcase_07 AC 796 ms
58,752 KB
testcase_08 AC 818 ms
58,708 KB
testcase_09 AC 693 ms
58,624 KB
testcase_10 AC 837 ms
58,624 KB
testcase_11 AC 844 ms
58,752 KB
testcase_12 AC 645 ms
58,752 KB
testcase_13 AC 658 ms
58,724 KB
testcase_14 AC 800 ms
58,752 KB
testcase_15 AC 869 ms
58,752 KB
testcase_16 AC 705 ms
58,624 KB
testcase_17 AC 831 ms
58,752 KB
testcase_18 AC 930 ms
58,624 KB
testcase_19 AC 869 ms
58,624 KB
testcase_20 AC 531 ms
58,624 KB
testcase_21 AC 764 ms
58,700 KB
testcase_22 AC 793 ms
58,752 KB
testcase_23 AC 704 ms
58,744 KB
testcase_24 TLE -
testcase_25 AC 761 ms
58,624 KB
testcase_26 AC 918 ms
58,672 KB
testcase_27 AC 798 ms
58,596 KB
testcase_28 AC 172 ms
58,624 KB
testcase_29 AC 251 ms
58,752 KB
testcase_30 AC 317 ms
58,624 KB
testcase_31 AC 385 ms
58,624 KB
testcase_32 AC 477 ms
58,624 KB
testcase_33 AC 550 ms
58,680 KB
testcase_34 AC 642 ms
58,624 KB
testcase_35 AC 707 ms
58,744 KB
testcase_36 AC 775 ms
58,608 KB
testcase_37 AC 854 ms
58,612 KB
testcase_38 AC 955 ms
58,668 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 89 ms
58,664 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
    
    int inv[1<<N][N];
    rep(S, 1<<N) rep(i, N) inv[S][i] = 0;
    rep(S, 1<<N) {
        int cnt[N]; fill(cnt, cnt+N, 0);
        rep(i, N) if ((S>>i)&1) cnt[i] = 1;
        for (int i=1; i<N; i++) cnt[i] += cnt[i-1];
        rep(i, N) inv[S][i] = N-cnt[i];
    }
    
    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;
                ndp[S|(1<<A)][inv[S][A]%2] += dp[S][0];
                ndp[S|(1<<A)][(inv[S][A]%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