結果
問題 | No.1045 直方体大学 |
ユーザー | mkawa2 |
提出日時 | 2021-05-11 23:47:13 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,618 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 187,884 KB |
最終ジャッジ日時 | 2024-09-22 06:27:14 |
合計ジャッジ時間 | 4,355 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
60,144 KB |
testcase_01 | AC | 38 ms
53,140 KB |
testcase_02 | AC | 61 ms
68,040 KB |
testcase_03 | AC | 59 ms
67,312 KB |
testcase_04 | AC | 56 ms
67,100 KB |
testcase_05 | AC | 117 ms
77,556 KB |
testcase_06 | AC | 113 ms
77,568 KB |
testcase_07 | AC | 118 ms
77,832 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] dij = [(0, 1), (1, 0), (1, 1), (1, -1)] inf = 10**16 # md = 998244353 md = 10**9+7 n = II() abc = [] for _ in range(n): aa = LI() aa.sort() abc.append(aa) # print(abc) def tohwt(i, j): a, b, c = abc[i] if j == 0: return a, b, c if j == 1: return a, c, b return b, c, a dp = [[[0]*3 for _ in range(n)] for _ in range(1 << n)] for i in range(n): for j in range(3): dp[1 << i][i][j] = tohwt(i, j)[2] def chmax(s, i, j, val): if val > dp[s][i][j]: dp[s][i][j] = val ans = 0 for s in range(1 << n): for i in range(n): for j in range(3): H, W, T = tohwt(i, j) pre = dp[s][i][j] ans = max(ans, pre) for ni in range(n): if s >> ni & 1: continue for nj in range(3): h, w, t = tohwt(ni, nj) if h > H or w > W: continue chmax(s | 1 << ni, ni, nj, pre+t) print(ans)