結果

問題 No.1045 直方体大学
ユーザー vwxyzvwxyz
提出日時 2024-08-15 04:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 151,088 KB
最終ジャッジ日時 2024-08-15 04:09:58
合計ジャッジ時間 8,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,736 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 AC 40 ms
58,240 KB
testcase_03 AC 37 ms
58,112 KB
testcase_04 AC 37 ms
57,728 KB
testcase_05 AC 84 ms
77,428 KB
testcase_06 AC 78 ms
77,088 KB
testcase_07 AC 74 ms
77,000 KB
testcase_08 AC 699 ms
150,528 KB
testcase_09 AC 664 ms
150,208 KB
testcase_10 AC 753 ms
150,584 KB
testcase_11 AC 678 ms
150,664 KB
testcase_12 AC 580 ms
150,528 KB
testcase_13 AC 715 ms
151,088 KB
testcase_14 AC 681 ms
150,176 KB
testcase_15 AC 646 ms
150,784 KB
testcase_16 AC 737 ms
150,548 KB
testcase_17 AC 58 ms
70,016 KB
testcase_18 AC 774 ms
150,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ABC=[]
for i in range(N):
    a,b,c=map(int,input().split())
    ABC.append((a,b,c))
def idx(bit,i,x,y):
    return ((bit*N+i)*3+x)*3+y
trans=[[] for ij in range(N*N)]
for i in range(N):
    for j in range(N):
        if i==j:
            continue
        for x0 in range(3):
            for y0 in range(x0+1,3):
                if x0==y0:
                    continue
                for x1 in range(3):
                    for y1 in range(x1+1,3):
                        if x1==y1:
                            continue
                        if ABC[i][x0]>=ABC[j][x1] and ABC[i][y0]>=ABC[j][y1] or ABC[i][x0]>=ABC[j][y1] and ABC[i][y0]>=ABC[j][x1]:
                            trans[i*N+j].append((x0,y0,x1,y1,ABC[j][3-x1-y1]))

inf=1<<30
dp=[-inf]*((9*N)<<N)
for bit in range(1,1<<N):
    I=[i for i in range(N) if bit&1<<i]
    if len(I)==1:
        for x in range(3):
            for y in range(3):
                if x==y:
                    continue
                dp[idx(bit,I[0],x,y)]=ABC[I[0]][3-x-y]
    else:
        for i in I:
            for j in I:
                if i==j:
                    continue
                for x0,y0,x1,y1,h in trans[i*N+j]:
                    dp[idx(bit,j,x1,y1)]=max(dp[idx(bit,j,x1,y1)],dp[idx(bit^1<<j,i,x0,y0)]+h)
ans=max(dp)
print(ans)
0