結果

問題 No.1045 直方体大学
ユーザー pekempeypekempey
提出日時 2020-05-01 22:54:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,235 ms / 2,000 ms
コード長 1,454 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,960 KB
最終ジャッジ日時 2024-06-07 11:16:15
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 89 ms
76,544 KB
testcase_06 AC 84 ms
76,800 KB
testcase_07 AC 77 ms
73,344 KB
testcase_08 AC 184 ms
100,924 KB
testcase_09 AC 159 ms
100,676 KB
testcase_10 AC 148 ms
100,760 KB
testcase_11 AC 160 ms
100,940 KB
testcase_12 AC 185 ms
100,624 KB
testcase_13 AC 203 ms
100,864 KB
testcase_14 AC 169 ms
100,944 KB
testcase_15 AC 196 ms
100,896 KB
testcase_16 AC 273 ms
100,960 KB
testcase_17 AC 89 ms
76,052 KB
testcase_18 AC 1,235 ms
100,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def input_int():
    return int(input())

def input_ints():
    return list(map(int, input().split()))

N = input_int()
A = []
B = []
C = []
for _ in range(N):
    a, b, c = sorted(input_ints())
    A.append(a)
    B.append(b)
    C.append(c)

# 0: AB
# 1: AC
# 2: BC

def height(k):
    i, j = divmod(k, 3)
    if j == 0:
        return C[i]
    elif j == 1:
        return B[i]
    else:
        return A[i]

def face(k):
    i, j = divmod(k, 3)
    if j == 0:
        return A[i], B[i]
    elif j == 1:


        k
        return A[i], C[i]
    else:
        return B[i], C[i]

INF = 10**9
dp = [-INF] * ((1 << N) * (N * 3))

def get(i, j):
    return dp[i * (N * 3) + j]

def update(i, j, v):
    k = i * (N * 3) + j
    dp[k] = max(dp[k], v)

for i in range(N):
    update(1 << i, i * 3 + 0, height(i * 3 + 0))
    update(1 << i, i * 3 + 1, height(i * 3 + 1))
    update(1 << i, i * 3 + 2, height(i * 3 + 2))

def can(x, y):
    f1 = face(x)
    f2 = face(y)
    return f1[0] <= f2[0] and f1[1] <= f2[1]

g = [[can(i, j) for j in range(N * 3)] for i in range(N * 3)]

ans = 0
for i in range(1 << N):
    for j in range(N * 3):
        if get(i, j) == -INF:
            continue
        ans = max(ans, get(i, j))
        for kx in range(N):
            if i >> kx & 1: continue
            for ky in range(3):
                k = kx * 3 + ky
                if g[j][k]:
                    update(i | 1 << kx, k, get(i, j) + height(k))
print(ans)


0