結果

問題 No.1045 直方体大学
ユーザー tamatotamato
提出日時 2020-05-02 00:25:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-06-07 13:31:35
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 41 ms
58,368 KB
testcase_03 AC 38 ms
57,728 KB
testcase_04 AC 39 ms
58,496 KB
testcase_05 AC 59 ms
68,992 KB
testcase_06 AC 54 ms
65,280 KB
testcase_07 AC 58 ms
68,864 KB
testcase_08 AC 738 ms
98,336 KB
testcase_09 AC 427 ms
98,432 KB
testcase_10 AC 743 ms
98,560 KB
testcase_11 AC 731 ms
98,356 KB
testcase_12 AC 431 ms
89,600 KB
testcase_13 AC 421 ms
89,856 KB
testcase_14 AC 333 ms
88,960 KB
testcase_15 AC 274 ms
90,624 KB
testcase_16 AC 344 ms
89,496 KB
testcase_17 AC 51 ms
64,256 KB
testcase_18 AC 145 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10**9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    xyz = []
    val = set()
    for i in range(N):
        a, b, c = map(int, input().split())
        x, y, z = sorted([a, b, c])
        xyz.append((x, y, z, i))
        xyz.append((x, z, y, i))
        xyz.append((y, z, x, i))
        val.add(x)
        val.add(y)
    val.add(0)
    val = sorted(list(val))
    val2idx = {}
    for i, v in enumerate(val):
        val2idx[v] = i

    xyz.sort(key=lambda p: p[0])
    xyz.sort(key=lambda p: p[1])
    dp = [[-inf] * (len(val)) for _ in range(2**N)]
    dp[0][0] = 0
    for x, y, z, ii in xyz:
        j = val2idx[x]
        for state in range(2**N):
            if state >> ii & 1:
                continue
            for last in range(j+1):
                dp[state | (1 << ii)][j] = max(dp[state | (1 << ii)][j], dp[state][last] + z)
    ans = 0
    for state in range(2**N):
        for last in range(len(val)):
            ans = max(ans, dp[state][last])
    print(ans)


if __name__ == '__main__':
    main()
0