結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー H3PO4H3PO4
提出日時 2022-12-21 09:23:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 1,000 ms
コード長 663 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 84,668 KB
最終ジャッジ日時 2024-09-17 21:22:13
合計ジャッジ時間 22,591 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
84,128 KB
testcase_01 AC 416 ms
84,488 KB
testcase_02 AC 385 ms
84,312 KB
testcase_03 AC 431 ms
84,232 KB
testcase_04 AC 416 ms
84,244 KB
testcase_05 AC 436 ms
84,284 KB
testcase_06 AC 433 ms
84,276 KB
testcase_07 AC 423 ms
84,612 KB
testcase_08 AC 406 ms
84,300 KB
testcase_09 AC 407 ms
84,212 KB
testcase_10 AC 416 ms
84,188 KB
testcase_11 AC 473 ms
84,132 KB
testcase_12 AC 419 ms
84,296 KB
testcase_13 AC 405 ms
84,272 KB
testcase_14 AC 423 ms
84,304 KB
testcase_15 AC 412 ms
84,136 KB
testcase_16 AC 426 ms
84,120 KB
testcase_17 AC 422 ms
84,248 KB
testcase_18 AC 426 ms
84,184 KB
testcase_19 AC 413 ms
84,312 KB
testcase_20 AC 402 ms
84,208 KB
testcase_21 AC 412 ms
84,296 KB
testcase_22 AC 439 ms
84,320 KB
testcase_23 AC 422 ms
84,256 KB
testcase_24 AC 430 ms
84,120 KB
testcase_25 AC 411 ms
84,108 KB
testcase_26 AC 416 ms
84,280 KB
testcase_27 AC 396 ms
84,236 KB
testcase_28 AC 383 ms
84,512 KB
testcase_29 AC 396 ms
84,260 KB
testcase_30 AC 392 ms
84,452 KB
testcase_31 AC 400 ms
84,124 KB
testcase_32 AC 388 ms
84,392 KB
testcase_33 AC 407 ms
84,368 KB
testcase_34 AC 417 ms
84,540 KB
testcase_35 AC 430 ms
84,124 KB
testcase_36 AC 419 ms
84,668 KB
testcase_37 AC 456 ms
84,320 KB
testcase_38 AC 430 ms
84,260 KB
testcase_39 AC 422 ms
84,188 KB
testcase_40 AC 415 ms
84,288 KB
testcase_41 AC 409 ms
84,252 KB
testcase_42 AC 426 ms
84,100 KB
testcase_43 AC 426 ms
84,184 KB
testcase_44 AC 414 ms
84,460 KB
testcase_45 AC 409 ms
84,276 KB
testcase_46 AC 432 ms
84,296 KB
testcase_47 AC 378 ms
83,928 KB
testcase_48 AC 420 ms
84,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 19
bit_count = lambda x: bin(x).count("1")

exist_table = [[False] * N for _ in range(N)]
for i in range(N):
    L, *A = map(int, input().split())
    for a in A:
        exist_table[i][a - 1] = True

dp0 = [0] * (1 << N)
dp1 = [0] * (1 << N)
dp0[0] = 1
for b in range(1 << N):
    sign = True
    n = bit_count(b)
    for i in range(N):
        if (b >> i) & 1:
            continue
        sign = not sign
        if not exist_table[n][i]:
            continue
        c = b | (1 << i)
        if sign:
            dp1[c] += dp0[b]
            dp0[c] += dp1[b]
        else:
            dp0[c] += dp0[b]
            dp1[c] += dp1[b]
print(dp0[-1], dp1[-1])
0