結果

問題 No.1045 直方体大学
ユーザー mkawa2mkawa2
提出日時 2021-05-12 07:51:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,430 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,344 KB
最終ジャッジ日時 2024-09-22 13:41:08
合計ジャッジ時間 18,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,940 KB
testcase_01 AC 41 ms
53,680 KB
testcase_02 AC 51 ms
63,144 KB
testcase_03 AC 51 ms
63,348 KB
testcase_04 AC 50 ms
64,652 KB
testcase_05 AC 69 ms
67,640 KB
testcase_06 AC 69 ms
67,420 KB
testcase_07 AC 67 ms
67,720 KB
testcase_08 AC 1,581 ms
106,944 KB
testcase_09 AC 1,560 ms
106,924 KB
testcase_10 AC 1,664 ms
106,816 KB
testcase_11 AC 1,620 ms
106,904 KB
testcase_12 AC 1,699 ms
107,196 KB
testcase_13 AC 1,665 ms
106,796 KB
testcase_14 AC 1,582 ms
107,024 KB
testcase_15 AC 1,519 ms
106,952 KB
testcase_16 AC 1,773 ms
107,116 KB
testcase_17 AC 56 ms
64,816 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
ihwt = []
for i in range(n):
    a, b, c = sorted(LI())
    ihwt.append((i, a, b, c))
    ihwt.append((i, a, c, b))
    ihwt.append((i, b, c, a))
ihwt.sort(key=lambda x: (x[1], x[2]))

def chmax(s, j, val):
    if val > dp[s][j]: dp[s][j] = val

ans=0
dp = [[0]*n*3 for _ in range(1 << n)]
for j, (i, h, w, t) in enumerate(ihwt): chmax(1 << i, j, t)
for s in range(1 << n):
    for j in range(n*3):
        pre = dp[s][j]
        if pre>ans:ans=pre
        _, H, W, T = ihwt[j]
        for nj, (i, h, w, t) in enumerate(ihwt):
            if h > H: break
            if w > W: continue
            if s >> i & 1: continue
            chmax(s | 1 << i, nj, pre+t)

print(ans)
0