結果

問題 No.1045 直方体大学
ユーザー tamatotamato
提出日時 2020-05-01 23:38:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,076 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 83,200 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-06-07 12:00:49
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 44 ms
59,392 KB
testcase_03 AC 43 ms
59,136 KB
testcase_04 WA -
testcase_05 AC 61 ms
69,888 KB
testcase_06 AC 57 ms
65,536 KB
testcase_07 AC 62 ms
68,736 KB
testcase_08 AC 804 ms
106,880 KB
testcase_09 AC 436 ms
106,752 KB
testcase_10 AC 771 ms
107,252 KB
testcase_11 AC 788 ms
106,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 55 ms
64,640 KB
testcase_18 AC 216 ms
106,752 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(z)
    val.add(0)
    val = sorted(list(val))
    val2idx = {v: i for i, v in enumerate(val)}

    xyz.sort(key=lambda p: p[1])
    dp = [[-inf] * (N*3+1) for _ in range(2**N)]
    dp[0][0] = 0
    for i in range(N*3):
        x, y, z, ii = xyz[i]
        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(N*3+1):
            ans = max(ans, dp[state][last])
    print(ans)


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