結果
問題 | No.999 てん vs. ほむ |
ユーザー | Ricky_pon |
提出日時 | 2020-02-28 21:56:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 1,352 bytes |
コンパイル時間 | 1,642 ms |
コンパイル使用メモリ | 166,112 KB |
実行使用メモリ | 6,784 KB |
最終ジャッジ日時 | 2024-10-13 17:21:09 |
合計ジャッジ時間 | 2,622 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 28 ms
6,400 KB |
testcase_10 | AC | 10 ms
5,248 KB |
testcase_11 | AC | 8 ms
5,248 KB |
testcase_12 | AC | 13 ms
5,248 KB |
testcase_13 | AC | 29 ms
6,656 KB |
testcase_14 | AC | 30 ms
6,784 KB |
testcase_15 | AC | 29 ms
6,528 KB |
testcase_16 | AC | 30 ms
6,528 KB |
testcase_17 | AC | 23 ms
6,528 KB |
testcase_18 | AC | 23 ms
6,400 KB |
testcase_19 | AC | 23 ms
6,528 KB |
testcase_20 | AC | 23 ms
6,528 KB |
testcase_21 | AC | 29 ms
6,656 KB |
testcase_22 | AC | 29 ms
6,528 KB |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for(int (i)=(int)(a); (i)<(int)(b); ++(i)) #define rFor(i, a, b) for(int (i)=(int)(a)-1; (i)>=(int)(b); --(i)) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair<int, int> pii; typedef pair<int, lint> pil; typedef pair<lint, int> pli; typedef pair<lint, lint> pll; template<class T> bool chmax(T &a, const T &b){if(a<b){a=b; return true;} return false;} template<class T> bool chmin(T &a, const T &b){if(a>b){a=b; return true;} return false;} template<class T> T div_floor(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>=0 ? a/b : (a+1)/b-1; } template<class T> T div_ceil(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>0 ? (a-1)/b+1 : a/b; } constexpr lint mod = 1e9+7; constexpr lint INF = mod * mod; constexpr int MAX = 200010; int main(){ int n; scanf("%d", &n); lint a[2*n], L[n+1], R[n+1]; L[0] = R[0] = 0; rep(i, 2*n){ scanf("%lld", &a[i]); if(i % 2 == 0) L[i/2+1] = a[i]; else R[i/2+1] = a[i]; } partial_sum(L, L+n+1, L); partial_sum(R, R+n+1, R); lint ans = -INF; rep(i, n+1){ chmax(ans, L[i] + R[n]-R[i]); } printf("%lld\n", 2*ans - (L[n]+R[n])); }