結果
問題 | No.1045 直方体大学 |
ユーザー | hedwig100 |
提出日時 | 2020-05-02 13:59:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,324 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 848,624 KB |
最終ジャッジ日時 | 2024-06-09 12:18:52 |
合計ジャッジ時間 | 4,830 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
56,832 KB |
testcase_01 | AC | 42 ms
56,960 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | MLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
MOD = 10 ** 9 + 7 INF = 10 ** 10 import sys sys.setrecursionlimit(100000000) dy = (-1,0,1,0) dx = (0,1,0,-1) def main(): N = int(input()) L = (1<<N) cube = [tuple(map(int,input().split())) for _ in range(N)] dp = [[[0] * 51 for _ in range(51)] for _ in range(L)] for i in range(N): for k in range(3): a = 3*i + k b = 3*i + (k + 1)%3 dp[1<<i][a][b] = cube[i][(k + 2)%3] for s in range(1,L): flag = [] non_flag = [] for i in range(N): if (s>>i)&1: flag.append(i) else: non_flag.append(i) for i in flag: for k in range(3): a = 3*i + k b = 3*i + (k + 1)%3 for j in non_flag: for l in range(3): x = 3*j + l y = 3*j + (l + 1)%3 if ((cube[i][k] <= cube[j][l] and cube[i][(k + 1)%3] <= cube[j][(l + 1)%3]) or (cube[i][k] <= cube[j][(l + 1)%3] and cube[i][(k + 1)%3] <= cube[j][l])): dp[s^(1<<j)][x][y] = max(dp[s^(1<<j)][x][y],dp[s][a][b] + cube[j][(k + 2)%3]) #print(dp[-1]) print(max(max(dp[-1][i]) for i in range(51))) if __name__ == '__main__': main()