結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー ああいいああいい
提出日時 2023-01-02 10:11:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 1,000 ms
コード長 551 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 124,544 KB
最終ジャッジ日時 2024-11-27 00:38:53
合計ジャッジ時間 22,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
123,904 KB
testcase_01 AC 385 ms
124,128 KB
testcase_02 AC 285 ms
123,904 KB
testcase_03 AC 420 ms
124,032 KB
testcase_04 AC 410 ms
123,904 KB
testcase_05 AC 418 ms
124,544 KB
testcase_06 AC 403 ms
124,348 KB
testcase_07 AC 417 ms
124,032 KB
testcase_08 AC 415 ms
124,044 KB
testcase_09 AC 411 ms
124,024 KB
testcase_10 AC 416 ms
124,032 KB
testcase_11 AC 416 ms
123,932 KB
testcase_12 AC 413 ms
124,032 KB
testcase_13 AC 422 ms
124,032 KB
testcase_14 AC 427 ms
123,904 KB
testcase_15 AC 437 ms
124,032 KB
testcase_16 AC 405 ms
123,776 KB
testcase_17 AC 412 ms
124,032 KB
testcase_18 AC 433 ms
123,928 KB
testcase_19 AC 415 ms
123,904 KB
testcase_20 AC 397 ms
123,904 KB
testcase_21 AC 420 ms
123,940 KB
testcase_22 AC 416 ms
124,032 KB
testcase_23 AC 425 ms
123,944 KB
testcase_24 AC 418 ms
124,032 KB
testcase_25 AC 421 ms
123,932 KB
testcase_26 AC 421 ms
124,140 KB
testcase_27 AC 399 ms
124,216 KB
testcase_28 AC 348 ms
124,012 KB
testcase_29 AC 340 ms
123,776 KB
testcase_30 AC 351 ms
123,956 KB
testcase_31 AC 363 ms
123,776 KB
testcase_32 AC 372 ms
124,144 KB
testcase_33 AC 372 ms
124,032 KB
testcase_34 AC 375 ms
123,996 KB
testcase_35 AC 382 ms
124,032 KB
testcase_36 AC 398 ms
123,776 KB
testcase_37 AC 394 ms
124,148 KB
testcase_38 AC 409 ms
124,060 KB
testcase_39 AC 418 ms
124,144 KB
testcase_40 AC 422 ms
124,212 KB
testcase_41 AC 427 ms
124,032 KB
testcase_42 AC 425 ms
124,032 KB
testcase_43 AC 438 ms
123,852 KB
testcase_44 AC 422 ms
123,980 KB
testcase_45 AC 426 ms
124,416 KB
testcase_46 AC 417 ms
124,012 KB
testcase_47 AC 286 ms
123,828 KB
testcase_48 AC 440 ms
123,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 19
dat = [None for _ in range(N)]
for _ in range(N):
    L,*A = map(int,input().split())
    dat[_] = set(A)

dp = [[0] * 2 for _ in range(1 << N)]

dp[0][0] = 1
for bit in range(1 << N):
    n = 0
    for i in range(N):
        if bit >> i & 1:
            n += 1
    m = 0
    for i in range(N):
        if bit >> i & 1:
            m += 1
        else:
            if i + 1 not in dat[n]:continue
            dp[bit | (1 << i)][(n - m) % 2] += dp[bit][0]
            dp[bit | (1 << i)][(n - m + 1) % 2] += dp[bit][1]
print(dp[-1][0],dp[-1][1])
0