結果

問題 No.1598 4×4 Grid
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-14 22:53:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,675 ms / 4,000 ms
コード長 719 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 306,880 KB
最終ジャッジ日時 2024-07-03 23:35:43
合計ジャッジ時間 40,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,552 ms
306,792 KB
testcase_01 AC 3,541 ms
306,688 KB
testcase_02 AC 3,562 ms
306,520 KB
testcase_03 AC 3,557 ms
306,472 KB
testcase_04 AC 3,554 ms
306,812 KB
testcase_05 AC 3,563 ms
306,528 KB
testcase_06 AC 3,559 ms
306,708 KB
testcase_07 AC 3,675 ms
306,776 KB
testcase_08 AC 3,565 ms
306,820 KB
testcase_09 AC 3,572 ms
306,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
M = 216
dp = [[0]*(2*M+5) for i in range(1<<16)]
dp[0][0] = 1
for i in range(1<<16):
    for j in range(-M,M+1):
        if dp[i][j] == 0:
            continue
        b = bin(i).count("1")
        for c in range(16):
            if i >> c & 1:
                continue
            x,y = divmod(c,4)
            count = 0
            for dx,dy in ((-1,0),(0,-1),(0,1),(1,0)):
                nx = x+dx
                ny = y+dy
                if nx < 0 or ny < 0 or nx > 3 or ny > 3:
                    continue
                if i >> (nx*4+ny) & 1:
                    count += b+1
                else:
                    count -= b+1
            dp[i|1<<c][count+j] += dp[i][j]
print(dp[-1][k])
0