結果
問題 | No.77 レンガのピラミッド |
ユーザー | KKT89 |
提出日時 | 2020-10-15 19:09:41 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 890 bytes |
コンパイル時間 | 2,565 ms |
コンパイル使用メモリ | 201,972 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 19:52:40 |
合計ジャッジ時間 | 2,762 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n); vector<int> sum(n+1); for(int i=0;i<n;i++){ cin >> a[i]; sum[i+1]=sum[i]+a[i]; } int res=1e9; for(int i=1;i<=n;i+=2){ int cnt=(i/2)*(i/2+1)+(i/2+1); if(sum[n]<cnt)continue; for(int j=0;j+i-1<n;j++){ int aaa=0; bool f=false; int in=0,out=sum[n]-(sum[j+i]-sum[j]); for(int k=j;k<j+i;k++){ if(!f){ aaa++; if(aaa==(i/2+1))f=true; } else aaa--; if(a[k]>aaa)out+=a[k]-aaa; else in+=aaa-a[k]; } res=min(res,max(in,out)); } } printf("%d\n",res); }