結果
問題 | No.1045 直方体大学 |
ユーザー | xenon_motsu |
提出日時 | 2019-11-13 17:50:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,209 bytes |
コンパイル時間 | 914 ms |
コンパイル使用メモリ | 77,832 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-05-02 14:48:00 |
合計ジャッジ時間 | 4,599 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 19 ms
5,376 KB |
testcase_06 | AC | 21 ms
5,376 KB |
testcase_07 | AC | 18 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
//TLE解 #include <iostream> #include <vector> #include <algorithm> struct cube{ int a, b, c; bool operator<(const cube&x){ return a == x.a ? b < x.b : a < x.a; } }; int main(){ int N,K,l,ans{0},i,k,j; std::cin >> N; std::vector<int> A(N), B(N), C(N),dp(N); std::vector<cube> vc(N); int n{1}; for(i = 0; i < N; ++i){ std::cin >> A[i] >> B[i] >> C[i]; n*=3; } for(k = 0; k < n; ++k){ K=k; for(i = 0; i < N; ++i){ l = K % 3; if(l == 0) vc[i].a = A[i], vc[i].b = B[i], vc[i].c = C[i]; if(l == 1) vc[i].a = B[i], vc[i].b = C[i], vc[i].c = A[i]; if(l == 2) vc[i].a = C[i], vc[i].b = A[i], vc[i].c = B[i]; if(vc[i].a > vc[i].b) std::swap(vc[i].a, vc[i].b); K /= 3; } sort(vc.begin(),vc.end()); for(i = 0; i < N; ++i){ dp[i] = vc[i].c; for(j = 0; j < i; ++j){ if(vc[j].a <= vc[i].a && vc[j].b <= vc[i].b){ dp[i] = std::max(dp[i], dp[j] + vc[i].c); } } if(ans < dp[i]) ans = dp[i]; } } std::cout << ans << std::endl; }