結果
問題 | No.1045 直方体大学 |
ユーザー | hitonanode |
提出日時 | 2020-05-01 22:46:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 502 ms / 2,000 ms |
コード長 | 1,125 bytes |
コンパイル時間 | 791 ms |
コンパイル使用メモリ | 84,720 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-06-07 11:06:35 |
合計ジャッジ時間 | 6,188 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 501 ms
16,384 KB |
testcase_09 | AC | 502 ms
16,256 KB |
testcase_10 | AC | 485 ms
16,256 KB |
testcase_11 | AC | 475 ms
16,256 KB |
testcase_12 | AC | 481 ms
16,384 KB |
testcase_13 | AC | 475 ms
16,384 KB |
testcase_14 | AC | 466 ms
16,256 KB |
testcase_15 | AC | 491 ms
16,384 KB |
testcase_16 | AC | 481 ms
16,256 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 384 ms
16,384 KB |
ソースコード
#include <algorithm> #include <iostream> #include <utility> #include <vector> using namespace std; using pint = pair<int, int>; int main() { int N; cin >> N; vector<pint> xy(N * 3); vector<int> z(N * 3); int j = 0; for (int i = 0; i < N; i++) { int a, b, c; cin >> a >> b >> c; for (int d = 0; d < 3; d++) { z[j] = a, xy[j] = make_pair(min(b, c), max(b, c)); swap(a, b), swap(b, c), j++; } } xy.emplace_back(1e8, 1e8); vector<vector<int>> dp(N * 3 + 1, vector<int>(1 << N)); for (int S = 0; S < (1 << N); S++) { for (int i = 0; i < N * 3 + 1; i++) { for (int j = 0; j < N * 3; j++) if (!((S >> (j / 3)) & 1)) { if (xy[i].first < xy[j].first) continue; if (xy[i].second < xy[j].second) continue; dp[j][S + (1 << (j / 3))] = max(dp[j][S + (1 << (j / 3))], dp[i][S] + z[j]); } } } int ret = 0; for (auto &vec : dp) ret = max(ret, *max_element(vec.begin(), vec.end())); cout << ret << '\n'; }