結果

問題 No.1375 Divide and Update
ユーザー 👑 NachiaNachia
提出日時 2021-02-05 22:30:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 199,792 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-07-02 13:03:43
合計ジャッジ時間 4,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 49 ms
7,552 KB
testcase_11 AC 45 ms
7,296 KB
testcase_12 AC 25 ms
5,632 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 56 ms
8,320 KB
testcase_15 AC 56 ms
8,320 KB
testcase_16 AC 56 ms
8,192 KB
testcase_17 AC 55 ms
8,192 KB
testcase_18 AC 56 ms
8,320 KB
testcase_19 AC 56 ms
8,320 KB
testcase_20 AC 45 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
LL X,Y;
LL A[200000];
LL ansl[200000];
LL ansr[200000];

int main(){
  scanf("%d%lld%lld",&N,&X,&Y);
  rep(i,N){ int a; scanf("%d",&a); A[i]=a; }

  LL minl,S;
  minl=S=0;
  rep(i,N-2){
    S+=X-A[i];
    ansl[i]=S-minl;
    if(i!=0) ansl[i] = max(ansl[i-1],ansl[i]);
    minl=min(minl,S);
  }
  minl=S=0;
  for(int i=N-2; i>=1; i--){
    S+=Y-A[i+1];
    ansr[i-1]=S-minl;
    if(i!=N-2) ansr[i-1] = max(ansr[i],ansr[i-1]);
    minl=min(minl,S);
  }

  S=0;
  rep(i,N) S+=A[i];
  rep(i,N-2) printf("%lld\n",ansl[i]+ansr[i]+S);
  return 0;
}

0