結果
問題 | No.999 てん vs. ほむ |
ユーザー | Hyado |
提出日時 | 2020-02-28 21:31:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,874 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 171,940 KB |
実行使用メモリ | 7,072 KB |
最終ジャッジ日時 | 2024-10-13 16:50:49 |
合計ジャッジ時間 | 2,691 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,824 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 23 ms
6,904 KB |
testcase_10 | AC | 8 ms
6,820 KB |
testcase_11 | AC | 6 ms
6,816 KB |
testcase_12 | AC | 11 ms
6,820 KB |
testcase_13 | AC | 25 ms
7,044 KB |
testcase_14 | AC | 26 ms
7,044 KB |
testcase_15 | AC | 26 ms
7,072 KB |
testcase_16 | AC | 25 ms
7,044 KB |
testcase_17 | AC | 20 ms
6,924 KB |
testcase_18 | AC | 19 ms
6,820 KB |
testcase_19 | AC | 19 ms
6,816 KB |
testcase_20 | AC | 19 ms
6,932 KB |
testcase_21 | AC | 24 ms
7,016 KB |
testcase_22 | AC | 24 ms
6,880 KB |
ソースコード
//#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") //#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #include <bits/stdc++.h> using namespace std; using ll = long long; using db = double; using ld = long double; template<typename T> using V = vector<T>; template<typename T> using VV = vector<vector<T>>; #define fs first #define sc second #define pb push_back #define mp make_pair #define mt make_tuple #define eb emplace_back #define lb lower_bound #define ub upper_bound #define all(v) (v).begin(),(v).end() #define siz(v) (ll)(v).size() #define rep(i,a,n) for(ll i=a;i<(ll)(n);++i) #define repr(i,a,n) for(ll i=n-1;(ll)a<=i;--i) #define ENDL '\n' typedef pair<int,int> Pi; typedef pair<ll,ll> PL; const ll mod = 1000000007; const ll INF = 1000000099; const ll LINF = (ll)(1e18 +99); const vector<ll> dx={-1,1,0,0},dy={0,0,-1,1}; template<typename T,typename U> inline bool chmin(T& t, const U& u){if(t>u){t=u;return 1;}return 0;} template<typename T,typename U> inline bool chmax(T& t, const U& u){if(t<u){t=u;return 1;}return 0;} template<typename T> inline T gcd(T a,T b){return b?gcd(b,a%b):a;} template<typename T,typename Y> inline T mpow(T a, Y n) { T res = 1; for(;n;n>>=1) { if (n & 1) res = res * a; a = a * a; } return res; } signed main(){ cin.tie(0);ios::sync_with_stdio(false); cout<<fixed<<setprecision(20); int n;cin>>n; V<ll> v(2*n); rep(i,0,2*n)cin>>v[i]; V<ll> lsum(0),rsum(0); lsum.pb(0); rep(i,0,2*n){ lsum.pb(v[i]-v[i+1]); i++; } rep(i,0,2*n){ rsum.pb(v[i+1]-v[i]); i++; } rsum.pb(0); rep(i,1,siz(lsum)){ lsum[i]+=lsum[i-1]; } repr(i,0,siz(rsum)-1){ rsum[i]+=rsum[i+1]; } ll ans=-LINF; rep(i,0,n+1){ chmax(ans,lsum[i]+rsum[i]); } cout<<ans<<ENDL; } //( . _ . ) PUE //CHECK overflow,vector_size,what to output?