結果
問題 | No.1045 直方体大学 |
ユーザー | tamato |
提出日時 | 2020-05-01 23:30:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,236 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 82,616 KB |
実行使用メモリ | 848,432 KB |
最終ジャッジ日時 | 2024-06-07 11:47:09 |
合計ジャッジ時間 | 3,688 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
54,092 KB |
testcase_01 | AC | 37 ms
54,076 KB |
testcase_02 | AC | 54 ms
65,772 KB |
testcase_03 | AC | 55 ms
67,140 KB |
testcase_04 | WA | - |
testcase_05 | AC | 111 ms
86,664 KB |
testcase_06 | AC | 111 ms
87,124 KB |
testcase_07 | AC | 109 ms
86,584 KB |
testcase_08 | MLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
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)] for _ in range(N * 3 + 1)] dp[0][0][0] = 0 for i in range(N*3): x, y, z, ii = xyz[i] j = val2idx[x] for state in range(2**N): for last in range(N*3+1): dp[i+1][state][last] = max(dp[i+1][state][last], dp[i][state][last]) if not state >> ii & 1: if last <= j: dp[i+1][state | (1 << ii)][j] = max(dp[i+1][state | (1 << ii)][j], dp[i][state][last] + z) ans = 0 for state in range(2**N): for last in range(N*3+1): ans = max(ans, dp[-1][state][last]) print(ans) if __name__ == '__main__': main()