Submission #11342964
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define ALL(obj) (obj).begin(),(obj).end()
#define SPEED cin.tie(0);ios::sync_with_stdio(false);
template<class T> using PQ = priority_queue<T>;
template<class T> using PQR = priority_queue<T,vector<T>,greater<T>>;
constexpr long long MOD = (long long)1e9 + 7;
constexpr long long MOD2 = 998244353;
constexpr long long HIGHINF = (long long)1e18;
constexpr long long LOWINF = (long long)1e15;
constexpr long double PI = 3.1415926535897932384626433;
template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);}
template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));}
template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}}
template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;}
template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;}
template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;}
template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;}
template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;}
void print(void) {cout << endl;}
template <class Head> void print(Head&& head) {cout << head;print();}
template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);}
template <class T> void chmax(T& a, const T b){a=max(a,b);}
template <class T> void chmin(T& a, const T b){a=min(a,b);}
void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;}
void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;}
void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;}
template<class Operator> class LazySegmentTree {
Operator Op;
using typeNode = decltype(Op.unitNode);
using typeLazy = decltype(Op.unitLazy);
size_t num;
size_t length;
size_t height;
vector<typeNode> node;
vector<typeLazy> lazy;
vector<pair<size_t,size_t>> range;
public:
//unitで初期化
LazySegmentTree(const size_t num) : num(num) {
for (length = 1,height = 0; length < num; length *= 2, height++);
node.resize(2 * length, Op.unitNode);
lazy.resize(2 * length, Op.unitLazy);
for (int i = 0; i < num; ++i) node[i + length] = Op.unitNode;
for (int i = length - 1; i >= 0; --i) node[i] = Op.funcNode(node[(i<<1)+0],node[(i<<1)+1]);
range.resize(2 * length);
for (int i = 0; i < length; ++i) range[i+length] = make_pair(i,i+1);
for (int i = length - 1; i >= 0; --i) range[i] = make_pair(range[(i<<1)+0].first,range[(i<<1)+1].second);
}
// //同じinitで初期化
LazySegmentTree(const size_t num, const typeNode init) : num(num) {
for (length = 1,height = 0; length < num; length *= 2, height++);
node.resize(2 * length, Op.unitNode);
lazy.resize(2 * length, Op.unitLazy);
for (int i = 0; i < num; ++i) node[i + length] = init;
for (int i = length - 1; i >= 0; --i) node[i] = Op.funcNode(node[(i<<1)+0],node[(i<<1)+1]);
range.resize(2 * length);
for (int i = 0; i < length; ++i) range[i+length] = make_pair(i,i+1);
for (int i = length - 1; i >= 0; --i) range[i] = make_pair(range[(i<<1)+0].first,range[(i<<1)+1].second);
}
//vectorで初期化
LazySegmentTree(const vector<typeNode>& vec) : num(vec.size()) {
for (length = 1,height = 0; length < vec.size(); length *= 2, height++);
node.resize(2 * length, Op.unitNode);
lazy.resize(2 * length, Op.unitLazy);
for (int i = 0; i < vec.size(); ++i) node[i + length] = vec[i];
for (int i = length - 1; i >= 0; --i) node[i] = Op.funcNode(node[(i<<1)+0],node[(i<<1)+1]);
range.resize(2 * length);
for (int i = 0; i < length; ++i) range[i+length] = make_pair(i,i+1);
for (int i = length - 1; i >= 0; --i) range[i] = make_pair(range[(i<<1)+0].first,range[(i<<1)+1].second);
}
void propagate(int k) {
if(lazy[k] == Op.unitLazy) return;
node[k] = Op.funcMerge(node[k],lazy[k],range[k].second-range[k].first);
if(k < length) lazy[2*k+0] = Op.funcLazy(lazy[2*k+0],lazy[k]);
if(k < length) lazy[2*k+1] = Op.funcLazy(lazy[2*k+1],lazy[k]);
lazy[k] = Op.unitLazy;
}
//update [a,b)
void update(int a, int b, typeLazy x) {
int l = a + length, r = b + length - 1;
for (int i = height; 0 < i; --i) propagate(l >> i), propagate(r >> i);
for(r++; l < r; l >>=1, r >>=1) {
if(l&1) lazy[l] = Op.funcLazy(lazy[l],x), propagate(l),l++;
if(r&1) --r,lazy[r] = Op.funcLazy(lazy[r],x), propagate(r);
}
l = a + length, r = b + length - 1;
while ((l>>=1),(r>>=1),l) {
if(lazy[l] == Op.unitLazy) node[l] = Op.funcNode(Op.funcMerge(node[(l<<1)+0],lazy[(l<<1)+0],range[(l<<1)+0].second-range[(l<<1)+0].first),Op.funcMerge(node[(l<<1)+1],lazy[(l<<1)+1],range[(l<<1)+1].second-range[(l<<1)+1].first));
if(lazy[r] == Op.unitLazy) node[r] = Op.funcNode(Op.funcMerge(node[(r<<1)+0],lazy[(r<<1)+0],range[(r<<1)+0].second-range[(r<<1)+0].first),Op.funcMerge(node[(r<<1)+1],lazy[(r<<1)+1],range[(r<<1)+1].second-range[(r<<1)+1].first));
}
}
//get [a,b)
typeNode get(int a, int b) {
int l = a + length, r = b + length - 1;
for (int i = height; 0 < i; --i) propagate(l >> i), propagate(r >> i);
typeNode vl = Op.unitNode, vr = Op.unitNode;
for(r++; l < r; l >>=1, r >>=1) {
if(l&1) vl = Op.funcNode(vl,Op.funcMerge(node[l],lazy[l],range[l].second-range[l].first)),l++;
if(r&1) r--,vr = Op.funcNode(Op.funcMerge(node[r],lazy[r],range[r].second-range[r].first),vr);
}
return Op.funcNode(vl,vr);
}
//return [0,length]
int PrefixBinarySearch(typeNode var) {
int l = length, r = 2*length - 1;
for (int i = height; 0 < i; --i) propagate(l >> i), propagate(r >> i);
if(!Op.funcCheck(node[1],var)) return num;
typeNode ret = Op.unitNode;
size_t idx = 2;
for(; idx < 2*length; idx<<=1){
if(!Op.funcCheck(Op.funcNode(ret,Op.funcMerge(node[idx],lazy[idx],range[idx].second-range[idx].first)),var)) {
ret = Op.funcNode(ret,Op.funcMerge(node[idx],lazy[idx],range[idx].second-range[idx].first));
idx++;
}
}
return min((idx>>1) - length,num);
}
//range[l,r) return [l,r]
int BinarySearch(size_t l, size_t r, typeNode var) {
if (l < 0 || length <= l || r < 0 || length < r) return -1;
for (int i = height; 0 < i; --i) propagate((l+length) >> i), propagate((r+length-1) >> i);
typeNode ret = Op.unitNode;
size_t off = l;
for(size_t idx = l+length; idx < 2*length && off < r; ){
if(range[idx].second<=r && !Op.funcCheck(Op.funcNode(ret,Op.funcMerge(node[idx],lazy[idx],range[idx].second-range[idx].first)),var)) {
ret = Op.funcNode(ret,Op.funcMerge(node[idx],lazy[idx],range[idx].second-range[idx].first));
off = range[idx++].second;
if(!(idx&1)) idx >>= 1;
}
else{
idx <<=1;
}
}
return off;
}
void print(){
// cout << "node" << endl;
// for(int i = 1,j = 1; i < 2*length; ++i) {
// cout << node[i] << " ";
// if(i==((1<<j)-1) && ++j) cout << endl;
// }
// cout << "lazy" << endl;
// for(int i = 1,j = 1; i < 2*length; ++i) {
// cout << lazy[i] << " ";
// if(i==((1<<j)-1) && ++j) cout << endl;
// }
cout << "vector" << endl;
cout << "{ " << get(0,1);
for(int i = 1; i < length; ++i) cout << ", " << get(i,i+1);
cout << " }" << endl;
}
};
//node:総和 lazy:加算
template<class typeNode, class typeLazy> struct nodeSumLazyAdd {
typeNode unitNode = 0;
typeLazy unitLazy = 0;
typeNode funcNode(typeNode l,typeNode r){return l+r;}
typeLazy funcLazy(typeLazy l,typeLazy r){return l+r;}
typeNode funcMerge(typeNode l,typeLazy r,int len){return l+r*len;}
bool funcCheck(typeNode nodeVal,typeNode var){return nodeVal > var - nodeVal;}
// LazySegmentTree<nodeSumLazyPlus<ll,ll>> Seg(N,0);
};
int main() {
int N; cin >> N;
vector<ll> A(N);
for(int i = 0; i < N; ++i) cin >> A[i];
LazySegmentTree<nodeSumLazyAdd<ll,ll>> seg(A);
ll ans = LOWINF;
for(int i = 2; i+1 < N; ++i) {
ll suml = seg.get(0,i);
ll sumr = seg.get(i,N);
size_t l = seg.BinarySearch(0,i,suml);
size_t r = seg.BinarySearch(i,N,sumr);
for(int j = 0; j < 2; ++j){
for(int k = 0; k < 2; ++k){
ll P = seg.get(0,l+j);
ll Q = seg.get(l+j,i);
ll R = seg.get(i,r+k);
ll S = seg.get(r+k,N);
ll maxi = max({P,Q,R,S});
ll mini = min({P,Q,R,S});
if(mini) chmin(ans,maxi-mini);
}
}
}
cout << ans << endl;
return 0;
}
Submission Info
| Submission Time |
|
| Task |
D - Equal Cut |
| User |
ningenMe |
| Language |
C++14 (GCC 5.4.1) |
| Score |
600 |
| Code Size |
9267 Byte |
| Status |
AC |
| Exec Time |
500 ms |
| Memory |
18176 KiB |
Judge Result
| Set Name |
Sample |
All |
| Score / Max Score |
0 / 0 |
600 / 600 |
| Status |
|
|
| Set Name |
Test Cases |
| Sample |
sample_01.txt, sample_02.txt, sample_03.txt |
| All |
sample_01.txt, sample_02.txt, sample_03.txt, sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt, subtask_1_08.txt, subtask_1_09.txt, subtask_1_10.txt, subtask_1_11.txt, subtask_1_12.txt, subtask_1_13.txt, subtask_1_14.txt, subtask_1_15.txt, subtask_1_16.txt, subtask_1_17.txt, subtask_1_18.txt, subtask_1_19.txt, subtask_1_20.txt, subtask_1_21.txt, subtask_1_22.txt, subtask_1_23.txt, subtask_1_24.txt, subtask_1_25.txt, subtask_1_26.txt, subtask_1_27.txt, subtask_1_28.txt, subtask_1_29.txt, subtask_1_30.txt, subtask_1_31.txt, subtask_1_32.txt, subtask_1_33.txt, subtask_1_34.txt, subtask_1_35.txt, subtask_1_36.txt, subtask_1_37.txt |
| Case Name |
Status |
Exec Time |
Memory |
| sample_01.txt |
AC |
1 ms |
256 KiB |
| sample_02.txt |
AC |
1 ms |
256 KiB |
| sample_03.txt |
AC |
1 ms |
256 KiB |
| subtask_1_01.txt |
AC |
1 ms |
256 KiB |
| subtask_1_02.txt |
AC |
491 ms |
18048 KiB |
| subtask_1_03.txt |
AC |
204 ms |
11136 KiB |
| subtask_1_04.txt |
AC |
327 ms |
9472 KiB |
| subtask_1_05.txt |
AC |
1 ms |
256 KiB |
| subtask_1_06.txt |
AC |
52 ms |
2560 KiB |
| subtask_1_07.txt |
AC |
288 ms |
9344 KiB |
| subtask_1_08.txt |
AC |
151 ms |
8960 KiB |
| subtask_1_09.txt |
AC |
277 ms |
9344 KiB |
| subtask_1_10.txt |
AC |
342 ms |
17920 KiB |
| subtask_1_11.txt |
AC |
449 ms |
18048 KiB |
| subtask_1_12.txt |
AC |
182 ms |
9088 KiB |
| subtask_1_13.txt |
AC |
301 ms |
9344 KiB |
| subtask_1_14.txt |
AC |
80 ms |
4608 KiB |
| subtask_1_15.txt |
AC |
53 ms |
2432 KiB |
| subtask_1_16.txt |
AC |
225 ms |
9216 KiB |
| subtask_1_17.txt |
AC |
206 ms |
9088 KiB |
| subtask_1_18.txt |
AC |
10 ms |
768 KiB |
| subtask_1_19.txt |
AC |
435 ms |
18048 KiB |
| subtask_1_20.txt |
AC |
500 ms |
18048 KiB |
| subtask_1_21.txt |
AC |
228 ms |
9216 KiB |
| subtask_1_22.txt |
AC |
156 ms |
4864 KiB |
| subtask_1_23.txt |
AC |
399 ms |
17920 KiB |
| subtask_1_24.txt |
AC |
453 ms |
18176 KiB |
| subtask_1_25.txt |
AC |
449 ms |
18176 KiB |
| subtask_1_26.txt |
AC |
451 ms |
18176 KiB |
| subtask_1_27.txt |
AC |
432 ms |
18176 KiB |
| subtask_1_28.txt |
AC |
426 ms |
18176 KiB |
| subtask_1_29.txt |
AC |
479 ms |
18176 KiB |
| subtask_1_30.txt |
AC |
477 ms |
18176 KiB |
| subtask_1_31.txt |
AC |
478 ms |
18176 KiB |
| subtask_1_32.txt |
AC |
483 ms |
18176 KiB |
| subtask_1_33.txt |
AC |
485 ms |
18176 KiB |
| subtask_1_34.txt |
AC |
454 ms |
18176 KiB |
| subtask_1_35.txt |
AC |
467 ms |
18176 KiB |
| subtask_1_36.txt |
AC |
401 ms |
18176 KiB |
| subtask_1_37.txt |
AC |
466 ms |
18176 KiB |