結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
124,032 KB
testcase_01 AC 426 ms
123,776 KB
testcase_02 AC 301 ms
123,648 KB
testcase_03 AC 449 ms
123,904 KB
testcase_04 AC 430 ms
124,288 KB
testcase_05 AC 448 ms
123,904 KB
testcase_06 AC 428 ms
123,904 KB
testcase_07 AC 440 ms
123,776 KB
testcase_08 AC 423 ms
124,032 KB
testcase_09 AC 431 ms
124,032 KB
testcase_10 AC 440 ms
123,904 KB
testcase_11 AC 441 ms
124,032 KB
testcase_12 AC 431 ms
124,032 KB
testcase_13 AC 432 ms
123,904 KB
testcase_14 AC 447 ms
123,904 KB
testcase_15 AC 458 ms
124,032 KB
testcase_16 AC 412 ms
124,160 KB
testcase_17 AC 416 ms
124,032 KB
testcase_18 AC 438 ms
123,904 KB
testcase_19 AC 439 ms
124,288 KB
testcase_20 AC 421 ms
123,904 KB
testcase_21 AC 439 ms
124,160 KB
testcase_22 AC 442 ms
123,776 KB
testcase_23 AC 420 ms
123,904 KB
testcase_24 AC 436 ms
123,904 KB
testcase_25 AC 429 ms
123,904 KB
testcase_26 AC 431 ms
123,776 KB
testcase_27 AC 413 ms
124,032 KB
testcase_28 AC 356 ms
124,032 KB
testcase_29 AC 377 ms
123,904 KB
testcase_30 AC 370 ms
123,904 KB
testcase_31 AC 385 ms
124,032 KB
testcase_32 AC 388 ms
123,904 KB
testcase_33 AC 384 ms
123,648 KB
testcase_34 AC 400 ms
123,904 KB
testcase_35 AC 418 ms
124,032 KB
testcase_36 AC 416 ms
123,904 KB
testcase_37 AC 420 ms
123,904 KB
testcase_38 AC 416 ms
123,776 KB
testcase_39 AC 438 ms
123,648 KB
testcase_40 AC 430 ms
123,648 KB
testcase_41 AC 436 ms
123,904 KB
testcase_42 AC 434 ms
123,904 KB
testcase_43 AC 433 ms
123,648 KB
testcase_44 AC 436 ms
123,776 KB
testcase_45 AC 455 ms
124,032 KB
testcase_46 AC 445 ms
123,904 KB
testcase_47 AC 297 ms
123,520 KB
testcase_48 AC 453 ms
123,904 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