結果

問題 No.999 てん vs. ほむ
ユーザー t98slidert98slider
提出日時 2022-12-23 15:34:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 168,816 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-04-29 04:16:41
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,376 KB
testcase_09 AC 78 ms
7,424 KB
testcase_10 AC 25 ms
5,376 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 36 ms
5,376 KB
testcase_13 AC 85 ms
7,936 KB
testcase_14 AC 86 ms
7,936 KB
testcase_15 AC 86 ms
7,936 KB
testcase_16 AC 85 ms
7,936 KB
testcase_17 AC 57 ms
7,552 KB
testcase_18 AC 55 ms
7,552 KB
testcase_19 AC 56 ms
7,552 KB
testcase_20 AC 57 ms
7,552 KB
testcase_21 AC 84 ms
7,808 KB
testcase_22 AC 81 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
  int n;
  cin >> n;
  n *= 2;
  ll ans = -(1ll << 60);
  vector<ll> a(n), s0(n + 1), s1(n + 1);
  for(int i = 0; i < n; i++){
    cin >> a[i];
    s0[i + 1] = s0[i] + (i & 1 ? -a[i] : a[i]);
    s1[i + 1] = s1[i] + (i & 1 ? a[i] : -a[i]);
  }
  for(int i = 0; i <= n; i += 2){
    ans = max(ans, s0[i] + s1[n] - s1[i]);
  }
  cout << ans << '\n';
}
0