結果
問題 | No.952 危険な火薬庫 |
ユーザー | Shuz* |
提出日時 | 2019-08-15 12:57:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,543 bytes |
コンパイル時間 | 702 ms |
コンパイル使用メモリ | 75,536 KB |
実行使用メモリ | 73,964 KB |
最終ジャッジ日時 | 2024-11-21 04:21:20 |
合計ジャッジ時間 | 3,404 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
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 | AC | 2 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 181 ms
73,964 KB |
ソースコード
#include <deque> #include <iostream> using namespace std; using ll = long long; const ll INF = 1e18; struct ConvexHullTrick { using F = pair<ll, ll>; deque<F> deq; #define a first #define b second #define lines deq.size() bool invalid_f1(F f0, F f1, F f2) { return (f1.a - f0.a) * (f2.b - f1.b) >= (f1.b - f0.b) * (f2.a - f1.a); } ll f(F f0, ll x) { return f0.a * x + f0.b; } void add(F f0) { while (lines >= 2 && invalid_f1(deq[lines - 2], deq[lines - 1], f0)) { deq.pop_back(); } deq.push_back(f0); } ll min(ll x) { while (lines >= 2 && f(deq[0], x) >= f(deq[1], x)) { deq.pop_front(); } return f(deq[0], x); } }; int main() { int N; cin >> N; ll S[N + 1], DP[N + 2][N + 1]; S[0] = 0; for (int i = 0; i < N; i++) cin >> S[i + 1], S[i + 1] += S[i]; for (int i = 0; i < N + 2; i++) { for (int j = 0; j < N + 1; j++) DP[i][j] = INF; } for (int i = 0; i < N + 2; i++) DP[i][0] = 0; for (int i = 0; i < N + 2; i++) { ConvexHullTrick CHT; for (int j = 0; j < N + 1; j++) { if (i + j + 1 > N + 1) break; ll A = -2 * S[i + j], B = S[i + j] * S[i + j] + DP[i + j][j]; ll X = S[i + j], Y = S[i + j] * S[i + j]; CHT.add(make_pair(A, B)); DP[i + j + 1][j] = min(DP[i + j + 1][j], CHT.min(X) + Y); } } for (int i = 0; i < N; i++) { cout << min(DP[N][i + 1], DP[N + 1][i + 1]) << endl; } }