結果

問題 No.1045 直方体大学
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-06 14:31:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,771 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 181,508 KB
最終ジャッジ日時 2024-12-23 12:36:30
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,992 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 42 ms
52,864 KB
testcase_05 AC 101 ms
77,440 KB
testcase_06 AC 91 ms
77,184 KB
testcase_07 AC 91 ms
77,696 KB
testcase_08 AC 423 ms
180,736 KB
testcase_09 AC 408 ms
180,576 KB
testcase_10 AC 405 ms
180,896 KB
testcase_11 AC 401 ms
180,864 KB
testcase_12 AC 454 ms
181,508 KB
testcase_13 AC 510 ms
180,608 KB
testcase_14 AC 432 ms
180,992 KB
testcase_15 AC 492 ms
181,248 KB
testcase_16 AC 530 ms
180,936 KB
testcase_17 AC 75 ms
73,344 KB
testcase_18 AC 1,771 ms
180,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())

# ABC[0,1,2] 底面の辺(short,long), 高さ
ABC = []
for _ in range(N):
    a, b, c = map(int, input().split())
    a, b, c = sorted([a, b, c])
    ABC.append(((a, b, c), (b, c, a), (a, c, b)))

# dp[使用した箱の集合][一番上の箱][底面がどれか] の高さの最大値
dp = [[[-1] * 3 for _ in range(N)] for _ in range(1 << N)]
for i, abc in enumerate(ABC):
    for j in range(3):
        dp[1 << i][i][j] = abc[j][2]

for bit in range(1, 1 << N):
    for i in range(N):
        if ~(bit >> i) & 1:  # 一番上の箱はi
            continue
        for j, (se1, le1, _) in enumerate(ABC[i]):
            if dp[bit][i][j] == -1:
                continue  # この積み方はぞんざいしない
            for k in range(N):  # 上に積む箱はj
                if (bit >> k) & 1:
                    continue  # 既に積んでる
                bit_next = bit | (1 << k)
                for l, (se2, le2, h) in enumerate(ABC[k]):
                    if se1 >= se2 and le1 >= le2:
                        dp[bit_next][k][l] = max(
                            dp[bit_next][k][l], dp[bit][i][j] + h)

ans = 0
for bit in range(1 << N):
    for i in range(N):
        for j in range(3):
            ans = max(ans, dp[bit][i][j])
print(ans)
0