結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー lddlinanlddlinan
提出日時 2023-03-23 22:21:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,710 bytes
コンパイル時間 689 ms
コンパイル使用メモリ 86,132 KB
実行使用メモリ 163,692 KB
最終ジャッジ日時 2024-09-18 15:39:40
合計ジャッジ時間 29,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
18,432 KB
testcase_01 AC 29 ms
64,128 KB
testcase_02 AC 6 ms
12,928 KB
testcase_03 AC 822 ms
127,616 KB
testcase_04 AC 264 ms
96,512 KB
testcase_05 AC 577 ms
127,360 KB
testcase_06 AC 307 ms
101,120 KB
testcase_07 AC 254 ms
100,992 KB
testcase_08 AC 99 ms
43,520 KB
testcase_09 AC 149 ms
101,632 KB
testcase_10 AC 507 ms
114,048 KB
testcase_11 AC 183 ms
90,624 KB
testcase_12 AC 129 ms
109,696 KB
testcase_13 AC 192 ms
100,224 KB
testcase_14 AC 467 ms
117,248 KB
testcase_15 AC 339 ms
126,336 KB
testcase_16 AC 249 ms
109,952 KB
testcase_17 AC 536 ms
127,488 KB
testcase_18 AC 638 ms
102,656 KB
testcase_19 AC 478 ms
126,720 KB
testcase_20 AC 41 ms
52,864 KB
testcase_21 AC 491 ms
101,248 KB
testcase_22 AC 271 ms
117,760 KB
testcase_23 AC 264 ms
126,208 KB
testcase_24 TLE -
testcase_25 AC 381 ms
120,576 KB
testcase_26 AC 668 ms
127,616 KB
testcase_27 AC 342 ms
127,616 KB
testcase_28 AC 9 ms
13,056 KB
testcase_29 AC 19 ms
26,368 KB
testcase_30 AC 64 ms
64,000 KB
testcase_31 AC 165 ms
95,872 KB
testcase_32 AC 315 ms
113,280 KB
testcase_33 AC 484 ms
121,984 KB
testcase_34 AC 642 ms
125,568 KB
testcase_35 AC 735 ms
126,720 KB
testcase_36 AC 822 ms
127,488 KB
testcase_37 AC 928 ms
160,140 KB
testcase_38 TLE -
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 6 ms
20,700 KB
testcase_48 AC 387 ms
162,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
class mypcmp {
public:
    bool operator()(const int& a, const int& b) {
        return a<b;
    }
};


int vs[19][19];
int cs[19];
LL dp[2][19][1<<19];
char dpm[19][1<<19];
void dfs(int i, int m) {
    if (m==0) i=0;
    if (dpm[i][m]) return;
    dpm[i][m]=1;
    int nm, x;
    LL r1=0, r0=0;
    int j=0; for (j=0; j<19; j++) if ((1<<j)&m) break;
    int nj; for (nj=j+1; nj<19; nj++) if ((1<<nj)&m) break;
    if (nj>=19) nj=0;
    // printf("dfs %d %x, j is %d, nj is %d\n", i, m, j, nj);
    int k; for (k=0; k<cs[i]; k++) {
        x = vs[i][k];
        if (x==j) {
            if (((1<<x)&m)==0) printf("something wrong\n");
            nm = m^(1<<x);
            dfs(nj, nm);
            r0+=dp[1][nj][nm];
            r1+=dp[0][nj][nm];
        } else {
            if (((1<<x)&m)==0) continue;
            nm = m^(1<<x);
            dfs(x, nm);
            r1+=dp[1][x][nm];
            r0+=dp[0][x][nm];
        }
    }
    dp[0][i][m]=r0;
    dp[1][i][m]=r1;
}
int main() {
    int n, i, j, mm;
    for (i=0; i<19; i++) {
        scanf("%d", &n); cs[i]=n;
        for (j=0; j<n; j++) {
            scanf("%d", &vs[i][j]);
            vs[i][j]--;
        }
    }
    memset(dpm, 0, sizeof(dpm));
    dp[0][0][0]=0; dp[1][0][0]=1;
    dpm[0][0]=1;
    mm=(1<<19)-1;
    dfs(0, mm);
    printf("%lld %lld\n", dp[0][0][mm], dp[1][0][mm]);
    return 0;
}
0