Submission #411120

# Submission time Handle Problem Language Result Execution time Memory
411120 2021-05-24T12:01:16 Z Blagojce Building Bridges (CEOI17_building) C++11
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#define fr(i, n, m) for(int i = (n); i < (m); i ++)
#define pb push_back
#define st first
#define nd second
#define pq priority_queue
#define all(x) begin(x), end(x)


using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
const int i_inf = 1e9;
const ll inf = 1e18;
const ll mod = 1e9+7;
const ld eps = 1e-13;
const ld pi  = 3.14159265359;

mt19937 _rand(time(NULL));
clock_t z;

const int mxn = 2e5+5;

int n;
ll h[mxn];
ll w[mxn];

ll dp[mxn];

ll pref[mxn];

ll p(ll a){
	return a*a;
}


struct line{
	ll m, b;
	ld x;
	bool query;

	line(ll m1, ll b1, ld x1, bool q1){
		m = m1, b = b1, x = x1, query = q1;
	}
	bool operator <(const line &l) const{
		if(l.query) return x < l.x;
		else return m < l.m;
	}
	bool parallel(const line &l) const{
		return m == l.m;
	}
	ld intersect(const line &l) const{
		return 1.0*(l.b-b)/(m-l.m);
	}
	ll eval(ll x) const{
		return m*x + b;
	}
	
	
};
set<line> hull;
typedef set<line> :: iterator iter;
bool cPrev(iter it){
	return it != hull.begin();
}
bool cNext(iter it){
	return it != hull.end() && next(it) != hull.end();
}
bool bad(const line &l1, const line &l2, const line &l3){
	return l1.intersect(l3) < l1.intersect(l2);
}
bool bad(iter it){
	return cPrev(it) && cNext(it) && bad(*prev(it), *it, *next(it));
}

iter update(iter it){
	if(!cPrev(it)) return it;
	ld x = it->intersect(*prev(it));
	line tmp(it->m, it->b, x, false);
	it = hull.erase(it);
	return hull.insert(it, tmp);
}


void addLine(ll m, ll b){
	line l(m, b, 0, false);
	iter it = hull.lower_bound(l);
	if(it != hull.end() && l.parallel(*it)){
		if(it->b < b) it = hull.erase(it);
		else return;
	}
	it = hull.insert(it, l);
	if(bad(it)){
		hull.erase(it);
		return;
	}
	while(cPrev(it) && bad(prev(it))) hull.erase(prev(it));
	while(cNext(it) && bad(next(it))) hull.erase(next(it));
	
	it = update(it);
	if(cPrev(it)) update(prev(it));
	if(cNext(it)) update(next(it));
}
ll query(ll x){
	if(hull.empty()) return -inf;
	line q(0, 0, x, true);
	iter it = --hull.lower_bound(q);
	return it->eval(x);
}



void solve(){
	cin >> n;
	fr(i, 0, n){
		cin >> h[i];
	}
	fr(i, 0, n){
		cin >> w[i];
	}
	pref[0] = w[0];
	fr(i, 1, n){
		pref[i] = pref[i-1]+w[i];
	}
	
	dp[0] = 0;
	addLine(2*h[0], -(dp[0] + p(h[0])-pref[0]));
	
	
	fr(i, 1, n){
		dp[i] = -query(h[i]) + p(h[i]) + pref[i] - w[i];
		
		
		addLine(2*h[i], -(dp[i] + p(h[i]) - pref[i]));
		6
	}
	cout<<dp[n-1]<<endl;
	
	
	
	
	
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	solve();

}
/*
6
3 8 7 1 6 6
0 -1 9 1 2 0

*/

Compilation message

building.cpp: In function 'void solve()':
building.cpp:136:4: error: expected ';' before '}' token
  136 |   6
      |    ^
      |    ;
  137 |  }
      |  ~  
building.cpp:136:3: warning: statement has no effect [-Wunused-value]
  136 |   6
      |   ^