結果
問題 | No.1045 直方体大学 |
ユーザー | pekempey |
提出日時 | 2020-05-01 22:33:54 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,353 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 107,696 KB |
最終ジャッジ日時 | 2024-06-07 10:54:10 |
合計ジャッジ時間 | 14,452 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
57,728 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 58 ms
66,628 KB |
testcase_03 | AC | 57 ms
65,408 KB |
testcase_04 | AC | 59 ms
66,048 KB |
testcase_05 | AC | 97 ms
76,288 KB |
testcase_06 | AC | 104 ms
76,936 KB |
testcase_07 | AC | 97 ms
76,672 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 88 ms
76,416 KB |
testcase_18 | TLE | - |
ソースコード
def input_int(): return int(input()) def input_ints(): return list(map(int, input().split())) N = input_int() A = [] B = [] C = [] for _ in range(N): a, b, c = sorted(input_ints()) A.append(a) B.append(b) C.append(c) # 0: AB # 1: AC # 2: BC def height(k): i, j = divmod(k, 3) if j == 0: return C[i] elif j == 1: return B[i] else: return A[i] def face(k): i, j = divmod(k, 3) if j == 0: return A[i], B[i] elif j == 1: return A[i], C[i] else: return B[i], C[i] INF = 10**9 dp = [[-INF for j in range(N * 3)] for i in range(1 << N)] for i in range(N): dp[1 << i][i * 3 + 0] = height(i * 3 + 0) dp[1 << i][i * 3 + 1] = height(i * 3 + 1) dp[1 << i][i * 3 + 2] = height(i * 3 + 2) def can(x, y): f1 = face(x) f2 = face(y) return f1[0] <= f2[0] and f1[1] <= f2[1] g = [[can(i, j) for j in range(N * 3)] for i in range(N * 3)] ans = 0 for i in range(1 << N): for j in range(N * 3): if dp[i] == -INF: continue ans = max(ans, dp[i][j]) for kx in range(N): if i >> kx & 1: continue for ky in range(3): k = kx * 3 + ky if g[j][k]: dp[i | 1 << kx][k] = max(dp[i | 1 << kx][k], dp[i][j] + height(k)) print(ans)