結果
問題 | No.1045 直方体大学 |
ユーザー | square1001 |
提出日時 | 2020-05-01 21:56:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,345 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 76,408 KB |
実行使用メモリ | 18,176 KB |
最終ジャッジ日時 | 2024-06-07 04:54:31 |
合計ジャッジ時間 | 3,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
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 | 2 ms
5,376 KB |
testcase_18 | AC | 212 ms
18,176 KB |
ソースコード
#include <vector> #include <iostream> #include <algorithm> using namespace std; bool check(int xa, int ya, int xb, int yb) { return (xa <= xb && ya <= yb) || (xa <= yb && ya <= xb); } int main() { int N; cin >> N; vector<int> A(N), B(N), C(N); for (int i = 0; i < N; ++i) { cin >> A[i] >> B[i] >> C[i]; } vector<vector<int> > dp(1 << N, vector<int>(3 * N)); for (int i = 0; i < N; ++i) { for (int j = 0; j < 3; ++j) { dp[1 << i][i + 2 * N] = (j == 0 ? A[i] : (j == 1 ? B[i] : C[i])); } } for (int i = 1; i < 1 << N; ++i) { for (int j = 0; j < N; ++j) { if (!((i >> j) & 1)) continue; int sub = i - (1 << j); for (int k = 0; k < N; ++k) { if (!((sub >> k) & 1)) continue; for (int x = 0; x < 3; ++x) { int xa = (x == 0 ? B[j] : (x == 1 ? C[j] : A[j])); int ya = (x == 0 ? C[j] : (x == 1 ? A[j] : B[j])); int za = (x == 0 ? A[j] : (x == 1 ? B[j] : C[j])); for (int y = 0; y < 3; ++y) { int xb = (y == 0 ? B[k] : (y == 1 ? C[k] : A[k])); int yb = (y == 0 ? C[k] : (y == 1 ? A[k] : B[k])); if (check(xa, ya, xb, yb)) { dp[i][j + x * N] = max(dp[i][j + x * N], dp[sub][k + y * N] + za); } } } } } } int ans = 0; for (int i = 0; i < 1 << N; ++i) { ans = max(ans, *max_element(dp[i].begin(), dp[i].end())); } cout << ans << endl; return 0; }