結果
問題 | No.913 木の燃やし方 |
ユーザー | chocorusk |
提出日時 | 2019-10-19 00:41:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,628 bytes |
コンパイル時間 | 1,673 ms |
コンパイル使用メモリ | 119,408 KB |
実行使用メモリ | 11,920 KB |
最終ジャッジ日時 | 2024-06-25 20:32:16 |
合計ジャッジ時間 | 10,706 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | AC | 230 ms
10,880 KB |
testcase_14 | AC | 222 ms
10,496 KB |
testcase_15 | AC | 220 ms
10,496 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 195 ms
11,136 KB |
testcase_20 | AC | 224 ms
11,088 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 152 ms
11,092 KB |
testcase_25 | AC | 134 ms
11,136 KB |
testcase_26 | AC | 240 ms
11,100 KB |
testcase_27 | AC | 204 ms
11,920 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 181 ms
11,704 KB |
testcase_32 | AC | 186 ms
11,904 KB |
testcase_33 | AC | 192 ms
11,920 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 184 ms
11,220 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> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, ll> P; typedef __int128_t lll; int n; ll a[200020]; ll s[200020]; ll ans[200020]; void solve(int l, int r){ if(l>r) return; if(l==r){ ans[l]=min(ans[l], 1+a[l]); return; } int m=(l+r)/2; deque<int> cht; for(int i=r; i>=m; i--){ ll a0=-2*(i+1), b0=(ll)(i+1)*(i+1)+s[i+1]; while(cht.size()>1){ int i1=cht[cht.size()-1], i2=cht[cht.size()-2]; ll a1=-2*i1, b1=(ll)i1*i1+s[i1]; ll a2=-2*i2, b2=(ll)i2*i2+s[i2]; if((lll)(b1-b2)*(a1-a0)<(lll)(b0-b1)*(a2-a1)) break; cht.pop_back(); } cht.push_back(i+1); } vector<ll> vm1(m-l+1), vm2(r-m+1); for(int i=m; i>=l; i--){ while(cht.size()>1){ int i1=cht[0], i2=cht[1]; ll a1=-2*i1, b1=(ll)i1*i1+s[i1]; ll a2=-2*i2, b2=(ll)i2*i2+s[i2]; if(a1*(ll)i+b1<a2*(ll)i+b2) break; cht.pop_front(); } int r=cht[0]; vm1[i-l]=(ll)(r-i)*(r-i)+s[r]-s[i]; } ll mn=1e18; for(int i=l; i<=m; i++){ mn=min(mn, vm1[i-l]); ans[i]=min(ans[i], mn); } cht.clear(); for(int i=l; i<=m; i++){ ll a0=-2*i, b0=(ll)i*i-s[i]; while(cht.size()>1){ int i1=cht[cht.size()-1], i2=cht[cht.size()-2]; ll a1=-2*i1, b1=(ll)i1*i1-s[i1]; ll a2=-2*i2, b2=(ll)i2*i2-s[i2]; if((lll)(b1-b2)*(a1-a0)<(lll)(b0-b1)*(a2-a1)) break; cht.pop_back(); } cht.push_back(i); } for(int i=m; i<=r; i++){ while(cht.size()>1){ int i1=cht[0], i2=cht[1]; ll a1=-2*i1, b1=(ll)i1*i1-s[i1]; ll a2=-2*i2, b2=(ll)i2*i2-s[i2]; if(a1*(ll)(i+1)+b1<a2*(ll)(i+1)+b2) break; cht.pop_front(); } int l=cht[0]; vm2[i-m]=(ll)(i+1-l)*(i+1-l)+s[i+1]-s[l]; } mn=1e18; for(int i=r; i>=m; i--){ mn=min(mn, vm2[i-m]); ans[i]=min(ans[i], mn); } solve(l, m-1); solve(m+1, r); } int main() { cin>>n; s[0]=0; for(int i=0; i<n; i++){ cin>>a[i]; s[i+1]=s[i]+a[i]; } const ll INF=1e18; fill(ans, ans+n, INF); solve(0, n-1); for(int i=0; i<n; i++){ printf("%lld\n", ans[i]); } return 0; }