結果

問題 No.1375 Divide and Update
ユーザー chocono2230chocono2230
提出日時 2021-02-06 00:02:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,685 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 209,032 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-07-02 14:41:17
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 339 ms
34,688 KB
testcase_11 AC 311 ms
32,000 KB
testcase_12 AC 172 ms
18,944 KB
testcase_13 AC 142 ms
16,384 KB
testcase_14 AC 389 ms
39,168 KB
testcase_15 AC 386 ms
39,296 KB
testcase_16 AC 387 ms
39,168 KB
testcase_17 AC 389 ms
39,168 KB
testcase_18 AC 396 ms
39,040 KB
testcase_19 AC 398 ms
39,168 KB
testcase_20 AC 341 ms
39,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  ll n, x, y;
  cin >> n >> x >> y;
  vector<ll> a(n), xa(n), ya(n);
  rep(i, n){
    ll in;
    cin >> in;
    a.at(i) = in;
    xa.at(i) = x - in;
    ya.at(i) = y - in;
  }
  vector<ll> sumsl(n+1, 0);
  rep(i, n) sumsl.at(i+1) = sumsl.at(i) + a.at(i);
  vector<ll> sumsr(n+1, 0);
  rrep(i, n) sumsr.at(i) = sumsr.at(i+1) + a.at(i);

  vector<ll> xv(n), yv(n);
  vector dp(n, vector<ll>(2, -1e18));
  dp.at(0).at(0) = dp.at(0).at(1) = xa.at(0);
  rep2(i, 1, n-1){
    dp.at(i).at(1) = max(xa.at(i), dp.at(i-1).at(1) + xa.at(i));
    dp.at(i).at(0) = max(dp.at(i).at(1), dp.at(i-1).at(0));
  }

  vector dp2(n, vector<ll>(2, -1e18));
  dp2.back().at(0) = dp2.back().at(1) = ya.back();
  rrep2(i, 1, n-1){
    dp2.at(i).at(1) = max(ya.at(i), dp2.at(i+1).at(1) + ya.at(i));
    dp2.at(i).at(0) = max(dp2.at(i).at(1), dp2.at(i+1).at(0));
  }

  vector<ll> ansx(n, 0), ansy(n, 0);
  rep2(i, 1, n-1){
    ansx.at(i) = sumsl.at(i)  + max(dp.at(i-1).at(1), dp.at(i-1).at(0));
  }
  rrep2(i, 1, n-1){
    ansy.at(i) = sumsr.at(i+1) + max(dp2.at(i+1).at(0), dp2.at(i+1).at(1));
  }
  rep2(i, 1, n-1){
    ll ans = ansx.at(i) + ansy.at(i) + a.at(i);
    cout << ans << endl;
  }
  return 0;
}
0