結果

問題 No.999 てん vs. ほむ
ユーザー t98slidert98slider
提出日時 2022-12-23 15:35:12
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 166,284 KB
実行使用メモリ 6,476 KB
最終ジャッジ日時 2023-08-11 11:52:22
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 4 ms
4,380 KB
testcase_09 AC 69 ms
5,944 KB
testcase_10 AC 22 ms
4,380 KB
testcase_11 AC 15 ms
4,376 KB
testcase_12 AC 33 ms
4,384 KB
testcase_13 AC 77 ms
6,156 KB
testcase_14 AC 76 ms
6,336 KB
testcase_15 AC 76 ms
6,144 KB
testcase_16 AC 77 ms
6,156 KB
testcase_17 AC 51 ms
5,936 KB
testcase_18 AC 52 ms
5,884 KB
testcase_19 AC 52 ms
6,056 KB
testcase_20 AC 52 ms
6,060 KB
testcase_21 AC 74 ms
6,476 KB
testcase_22 AC 73 ms
6,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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