結果
問題 | No.1150 シュークリームゲーム(Easy) |
ユーザー | umezo |
提出日時 | 2020-08-07 22:22:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 877 bytes |
コンパイル時間 | 2,150 ms |
コンパイル使用メモリ | 194,524 KB |
最終ジャッジ日時 | 2025-01-12 17:12:40 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 43 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int s,t; cin>>s>>t; s--,t--; vector<ll> A(2*n); ll x,sum=0; rep(i,n){ cin>>x; sum+=x; A[i]=x; A[n+i]=x; } ll now=0; if(s<t){ int l=(s+n+t+1)/2,r=(s+t+2*n)/2; for(int i=l;i<l+(n+1)/2;i++){ now+=A[i]; } ll ma=now; for(int j=0;l+(n+1)/2+j<=r;j++){ now-=A[l+j]; now+=A[l+(n+1)/2+j]; ma=max(ma,now); } cout<<2*ma-sum<<endl; } else{ int l=(s+t+1)/2,r=(s+t+n)/2; for(int i=l;i<l+(n+1)/2;i++){ now+=A[i]; } ll ma=now; for(int j=0;l+(n+1)/2+j<=r;j++){ now-=A[l+j]; now+=A[l+(n+1)/2+j]; ma=max(ma,now); } cout<<2*ma-sum<<endl; } return 0; }