結果
問題 | No.952 危険な火薬庫 |
ユーザー | chocorusk |
提出日時 | 2019-12-15 00:49:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,576 bytes |
コンパイル時間 | 1,126 ms |
コンパイル使用メモリ | 119,236 KB |
実行使用メモリ | 52,040 KB |
最終ジャッジ日時 | 2024-06-28 09:25:00 |
合計ジャッジ時間 | 3,477 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 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
5,376 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 | 3 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 153 ms
52,040 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; template<typename T, bool ismin=true> struct ConvexHullTrickMonotone{ using P=pair<T, T>; deque<P> deq; ConvexHullTrickMonotone(){} void add(T a, T b){ if(!ismin) a*=(-1), b*=(-1); if(deq.empty()){ deq.push_back({a, b}); return; } if(deq.back().first>=a){ if(deq.back().first==a && deq.back().second<=b) return; while(deq.size()>1){ T a1=deq.back().first, b1=deq.back().second; T a2=deq[deq.size()-2].first, b2=deq[deq.size()-2].second; if((b1-b2)*(a1-a)<(b-b1)*(a2-a1)) break; deq.pop_back(); } deq.push_back({a, b}); }else{ while(deq.size()>1){ T a1=deq.front().first, b1=deq.front().second; T a2=deq[1].first, b2=deq[1].second; if((b1-b2)*(a1-a)>(b-b1)*(a2-a1)) break; deq.pop_front(); } deq.push_front({a, b}); } } T get(T x, bool isinc){ if(isinc){ while(deq.size()>1){ T a1=deq.front().first, b1=deq.front().second; T a2=deq[1].first, b2=deq[1].second; if(a1*x+b1<a2*x+b2) break; deq.pop_front(); } T ret=deq.front().first*x+deq.front().second; if(ismin) return ret; else return -ret; }else{ while(deq.size()>1){ T a1=deq.back().first, b1=deq.back().second; T a2=deq[deq.size()-2].first, b2=deq[deq.size()-2].second; if(a1*x+b1<a2*x+b2) break; deq.pop_back(); } T ret=deq.back().first*x+deq.back().second; if(ismin) return ret; else return -ret; } } void clear(){ deq.clear(); } }; int n; ll a[3030]; ll s[3030]; int main() { cin>>n; for(int i=1; i<=n; i++){ cin>>a[i]; s[i]=s[i-1]+a[i]; } vector<ConvexHullTrickMonotone<ll>> cht(n+2); ll dp[3030][3030]; for(int i=0; i<=n+1; i++) for(int j=0; j<i; j++) dp[i][j]=1e18; for(int i=1; i<=n+1; i++){ dp[i][0]=0; for(int j=1; j<i; j++){ dp[i][j]=cht[i-j-1].get(s[i-1], true)+s[i-1]*s[i-1]; if(j<i-1) dp[i][j]=min(dp[i][j], dp[i-1][j]); } cht[i].add(-2*s[i], s[i]*s[i]); for(int j=1; j<i; j++){ cht[i-j].add(-2*s[i], s[i]*s[i]+dp[i][j]); } } for(int i=1; i<=n; i++) cout<<dp[n+1][i]<<endl; return 0; }