結果

問題 No.1045 直方体大学
ユーザー mkawa2mkawa2
提出日時 2021-05-12 00:36:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,749 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,212 KB
実行使用メモリ 64,400 KB
最終ジャッジ日時 2023-10-22 05:50:12
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
64,400 KB
testcase_01 AC 29 ms
10,176 KB
testcase_02 AC 29 ms
10,176 KB
testcase_03 AC 29 ms
10,180 KB
testcase_04 AC 30 ms
10,176 KB
testcase_05 AC 31 ms
10,356 KB
testcase_06 AC 31 ms
10,336 KB
testcase_07 AC 34 ms
10,344 KB
testcase_08 AC 96 ms
18,828 KB
testcase_09 AC 72 ms
15,668 KB
testcase_10 AC 49 ms
12,896 KB
testcase_11 AC 68 ms
15,308 KB
testcase_12 AC 91 ms
18,204 KB
testcase_13 AC 304 ms
41,932 KB
testcase_14 AC 100 ms
18,360 KB
testcase_15 AC 210 ms
27,684 KB
testcase_16 AC 244 ms
29,536 KB
testcase_17 AC 44 ms
10,628 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

from functools import lru_cache

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

n = II()
abc = []
for _ in range(n):
    aa = LI()
    aa.sort()
    abc.append(aa)
# print(abc)

to = [[] for _ in range(3*n+2)]
for i in range(n):
    for ni in range(n):
        if ni == i: continue
        for j in range(3):
            H, W, T = tohwt(i, j)
            u = i*3+j
            for nj in range(3):
                h, w, t = tohwt(ni, nj)
                if h > H or w > W: continue
                v = ni*3+nj
                to[u].append((v, t))
for i in range(n):
    for j in range(3):
        u = i*3+j
        h, w, t = tohwt(i, j)
        to[n*3].append((u, t))
        # to[u].append((n*3+1, 0))

@lru_cache(None)
def dfs(u,s):
    # if u == n*3+1: return 0
    res = 0
    for v, c in to[u]:
        i=v//3
        if s>>i&1:continue
        cur = dfs(v,s|1<<i)+c
        if cur>res:res=cur
    return res

print(dfs(n*3,0))
0