結果
問題 | No.1045 直方体大学 |
ユーザー | maspy |
提出日時 | 2020-05-01 21:47:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,240 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 109,056 KB |
最終ジャッジ日時 | 2024-06-07 04:18:19 |
合計ジャッジ時間 | 12,979 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 43 ms
52,224 KB |
testcase_02 | WA | - |
testcase_03 | AC | 43 ms
58,496 KB |
testcase_04 | AC | 43 ms
58,624 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 65 ms
67,328 KB |
testcase_18 | AC | 1,080 ms
108,800 KB |
ソースコード
import sys import itertools read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines INF = 10**18 N = int(readline()) m = map(int, read().split()) ABC = list(zip(m, m, m)) pattern = [None] * (3 * N) for i in range(N): a, b, c = sorted(ABC[i]) pattern[3 * i] = (a, b, c) pattern[3 * i + 1] = (b, c, a) pattern[3 * i + 2] = (a, c, b) dp = [[-INF] * (3 * N) for _ in range(1 << N)] for i in range(N): for k in range(3): dp[1 << i][3 * i + k] = pattern[3 * i + k][2] for s in range(1 << N): for i in range(N): if not (s & (1 << i)): continue for j in range(N): if s & (1 << j): continue t = s ^ (1 << j) for k in (3 * i, 3 * i + 1, 3 * i + 2): for l in (3 * j, 3 * j + 1, 3 * j + 2): a1, b1, c1 = pattern[k] a2, b2, c2 = pattern[l] if a1 > a2: continue if b1 > b2: continue x = dp[s][k] + c2 if dp[t][k] < x: dp[t][k] = x answer = max(itertools.chain(*dp)) print(answer)