結果
問題 | No.1598 4×4 Grid |
ユーザー | ayaoni |
提出日時 | 2021-07-10 01:30:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,181 ms / 4,000 ms |
コード長 | 1,160 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 81,624 KB |
実行使用メモリ | 193,552 KB |
最終ジャッジ日時 | 2024-07-01 20:25:30 |
合計ジャッジ時間 | 9,406 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 165 ms
87,640 KB |
testcase_01 | AC | 640 ms
113,852 KB |
testcase_02 | AC | 447 ms
114,844 KB |
testcase_03 | AC | 700 ms
136,984 KB |
testcase_04 | AC | 875 ms
152,136 KB |
testcase_05 | AC | 1,997 ms
184,500 KB |
testcase_06 | AC | 2,181 ms
193,552 KB |
testcase_07 | AC | 139 ms
82,772 KB |
testcase_08 | AC | 444 ms
113,284 KB |
testcase_09 | AC | 945 ms
158,616 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) K = I() X = [0]*(1<<16) for i in range(1<<16): A = [(i>>j) & 1 for j in range(16)] count = 0 for j in range(4): for k in range(3): if A[4*j+k] != A[4*j+k+1]: count += 1 for j in range(3): for k in range(4): if A[4*j+k] != A[4*(j+1)+k]: count += 1 X[i] = count dp = [[0]*(K+1) for _ in range(1<<16)] dp[0][0] = 1 for i in range(1,1<<16): x = X[i] A = [] for j in range(16): if (i>>j) & 1: A.append(j) for j in range(K+1): d = 0 if j < x: continue for a in A: d += dp[i^(1<<a)][j-x] dp[i][j] = d ans = dp[-1][K] print(ans)