結果

問題 No.1598 4×4 Grid
ユーザー とりゐとりゐ
提出日時 2024-06-25 12:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,918 ms / 4,000 ms
コード長 687 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 190,592 KB
最終ジャッジ日時 2024-06-25 12:24:59
合計ジャッジ時間 32,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,849 ms
190,144 KB
testcase_01 AC 2,801 ms
190,132 KB
testcase_02 AC 2,855 ms
190,176 KB
testcase_03 AC 2,833 ms
190,264 KB
testcase_04 AC 2,918 ms
190,592 KB
testcase_05 AC 2,808 ms
190,300 KB
testcase_06 AC 2,861 ms
190,292 KB
testcase_07 AC 2,826 ms
190,212 KB
testcase_08 AC 2,819 ms
190,336 KB
testcase_09 AC 2,832 ms
190,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 4
N2 = 16
cost = [0] * (1 << N2)
for bit in range(1 << N2):
    for x in range(N):
        for y in range(N):
            for dx, dy in [[0, 1], [1, 0]]:
                nx, ny = x + dx, y + dy
                if 0 <= nx < N and 0 <= ny < N:
                    if ((bit >> (x * N + y)) & 1) != ((bit >> (nx * N + ny)) & 1):
                        cost[bit] += 1

M = 220
dp = [[0] * (1 << N2) for _ in range(M)]
dp[0][0] = 1
for bit in range(1 << N2):
    for i in range(N2):
        if ((bit >> i) & 1) == 0:
            nbit = bit | (1 << i)
            c = cost[nbit]
            for j in range(M - c):
                dp[j + c][nbit] += dp[j][bit]

print(dp[int(input())][-1])
0