結果
| 問題 |
No.999 てん vs. ほむ
|
| コンテスト | |
| ユーザー |
monkukui2
|
| 提出日時 | 2020-02-28 21:33:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 103 ms / 2,000 ms |
| コード長 | 3,233 bytes |
| コンパイル時間 | 950 ms |
| コンパイル使用メモリ | 99,300 KB |
| 実行使用メモリ | 8,960 KB |
| 最終ジャッジ日時 | 2024-10-13 16:54:07 |
| 合計ジャッジ時間 | 3,041 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <functional>
#include <bitset>
using namespace std;
using lint = long long int;
long long int INF = 1001001001001001LL;
int inf = 1000000007;
long long int MOD = 1000000007LL;
double PI = 3.1415926535897932;
template<typename T1,typename T2>inline void chmin(T1 &a,const T2 &b){if(a>b) a=b;}
template<typename T1,typename T2>inline void chmax(T1 &a,const T2 &b){if(a<b) a=b;}
#define ALL(a) a.begin(),a.end()
#define RALL(a) a.rbegin(),a.rend()
/* do your best */
// quoted from beet-aizu
template <typename T, typename E, typename F, typename G>
struct SegmentTree{
// using F = function<T(T, T)>
// using G = function<T(T, E)>
int n;
F f;
G g;
T ti;
vector<T> dat;
SegmentTree(){};
SegmentTree(F f,G g,T ti):f(f),g(g),ti(ti){}
void init(int n_){
n=1;
while(n<n_) n<<=1;
dat.assign(n<<1,ti);
}
void build(const vector<T> &v){
int n_=v.size();
init(n_);
for(int i=0;i<n_;i++) dat[n+i]=v[i];
for(int i=n-1;i;i--)
dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]);
}
void update(int k,const E &x){
k += n;
dat[k] = g(dat[k], x);
while(k>>=1)
dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]);
}
T operator [](int k) const { return dat[k+n]; }
T query(int a,int b) const {
T vl=ti,vr=ti;
for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) {
if(l&1) vl=f(vl,dat[l++]);
if(r&1) vr=f(dat[--r],vr);
}
return f(vl,vr);
}
/* TODO わからない 聞く
template<typename C>
int find(int a,int b,C &check,int k,int l,int r){
if(!check(dat[k])||r<=a||b<=l) return -1;
if(k>=n) return k-n;
int m=(l+r)>>1;
int vl=find(a,b,check,(k<<1)|0,l,m);
if(~vl) return vl;
return find(a,b,check,(k<<1)|1,m,r);
}
template<typename C>
int find(int a,int b,C &check){
return find(a,b,check,1,0,n);
}*/
};
int main(){
using T = lint; // type T
using E = lint; // type E
auto f = [](T a, T b){ // return type T value
return a + b;
};
auto g = [](T a, E b){ // return type T value
return b; // return b;
};
T ti = 0; // identify element
int n; cin >> n;
vector<lint> a(n);
vector<lint> b(n);
for(int i = 0; i < n; i++) {
int aa, bb; cin >> aa >> bb;
a[i] = aa;
b[i] = bb;
}
SegmentTree<T, E, decltype(f), decltype(g)> sg1(f, g, ti); // don't change
sg1.build(a); // 初期配列を代入
SegmentTree<T, E, decltype(f), decltype(g)> sg2(f, g, ti); // don't change
sg2.build(b); // 初期配列を代入
lint ans = -INF;
for(int i = 0; i <= n; i++) {
lint homu = sg1.query(0, i) + sg2.query(i, n);
lint pura = sg2.query(0, i) + sg1.query(i, n);
ans = max(ans, homu - pura);
}
cout << ans << endl;
return 0;
}
monkukui2