結果
問題 | No.999 てん vs. ほむ |
ユーザー | 👑 CleyL |
提出日時 | 2020-02-28 21:31:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,004 bytes |
コンパイル時間 | 850 ms |
コンパイル使用メモリ | 95,200 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-10-13 16:50:25 |
合計ジャッジ時間 | 2,276 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 28 ms
6,912 KB |
testcase_22 | AC | 28 ms
6,820 KB |
ソースコード
//author:luckYrat(twitter:@luckYrat_) //#include <bits/stdc++.h> //def #include <iostream> #include <cmath> #include <algorithm> #include <iomanip> //array #include <vector> #include <set> #include <stack> #include <queue> #include <map> #include <utility> #include <climits> using namespace std; using ll = long long; using P = pair<ll,ll>; #define anyfill(n,s) setw(n) << setfill(s) #define loop(s) for(int i = 0; s > i; i++) #define rep(i,q) for(int i = 0; (q) > i; i++) #define repp(i,n,q) for(int i = n; (q) > i; i++) #define dep(i,q) for(int i = (q); 0 < i; i--) #define MAX 1000000000 const int mod = 1000000007; #define EPS (1e-10) #define pb push_back #define fir first #define scn second #define ednl endl #define YesNo(a) (a?"Yes":"No") #define YESNO(a) (a?"YES":"NO") #define yesno(a) (a?"yes":"no") P ar[4] = {{0,1},{0,-1},{1,0},{-1,0}}; /* 確認ポイント cout << fixed << setprecision(n) << 小数計算//n桁の小数表記になる vector.unique()は隣接した同じ要素を削除するので先にソートをする 計算量は変わらないが楽できるシリーズ C++11以降でmin({a,b,c...})で複数個のmic,maxを処理できる min(max)_element(iter,iter)で一番小さい(大きい)値のポインタが帰ってくる count(iter,iter,int)でintがiterからiterの間にいくつあったかを取得できる */ __attribute__((constructor)) void initial() { cin.tie(0); ios::sync_with_stdio(false); } int main(){ int n;cin>>n; vector<long long> A(n*2); for(int i = 0; 2*n > i; i++){ cin>>A[i]; } //最初に左を選ぶ vector<long long> B(n); for(int i = 0; n > i; i++){ B[i] = A[i*2]-A[i*2+1]; } vector<long long> R(n+1); vector<long long> L(n+1); R[0] = 0; L[0] = 0; for(int i = 0; n > i; i++){ R[i+1] = R[i]+B[i]; } for(int i = 0; n > i; i++){ L[i+1] = L[i]+(B[n-1-i]*-1); } long long ans = 0; for(int i = 0; n > i; i++){ ans = max(ans,abs(R[i]+L[n-1-i])); } cout << ans << endl; }