Submission #46491

# Submission time Handle Problem Language Result Execution time Memory
46491 2018-04-21T04:03:22 Z RockyB Building Bridges (CEOI17_building) C++17
60 / 100
93 ms 17336 KB
/// In The Name Of God

#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")

#include <bits/stdc++.h>

#define f first
#define s second

#define pb push_back
#define pp pop_back
#define mp make_pair

#define sz(x) (int)x.size()
#define sqr(x) ((x) * 1ll * (x))
#define all(x) x.begin(), x.end()

#define Kazakhstan ios_base :: sync_with_stdio(0), cin.tie(0), cout.tie(0);

#define nl '\n'
#define ioi exit(0);

typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;

const int N = (int)1e5 + 7;
const int K = 1;
const int inf = (int)1e9 + 7;
const int mod = (int)1e9 + 7;
const ll linf = (ll)1e18 + 7;

const int dx[] = {-1, 0, 1, 0, 1, -1, -1, 1};
const int dy[] = {0, 1, 0, -1, 1, -1, 1, -1};

using namespace std;

int n;
int h[N], w[N];
ll dp[N], s[N];

struct line {
	ll k, b;
	line() {
		k = 0, b = linf;
	}
	line(ll k, ll b) : k(k), b(b) {}
	ll get(ll x) {
		return k * x + b;
	}
};

struct tree {
	struct node {
		node *l, *r;
		line x;
		node(line x) : x(x) {
			l = r = 0;
		}
	};
	node *t;

	inline void upd(line x, node *&v, int tl = -1e6, int tr = 1e6) {
		if (!v) {
			v = new node(x);
			return;
		}

		int tm = tl + tr >> 1;
		bool lf = x.get(tl) < v -> x.get(tl);
		bool md = x.get(tm) < v -> x.get(tm);
		if (md) swap(x, v -> x);
		if (tl == tr) return;
		if (lf != md) upd(x, v -> l, tl, tm);
		else upd(x, v -> r, tm + 1, tr);
	}
	inline ll get(int p, node *&v, int tl = -1e6, int tr = 1e6) {
		if (!v) return linf;
		if (tl == tr) return v -> x.get(p);
		int tm = tl + tr >> 1;
		if (p <= tm) return min(get(p, v -> l, tl, tm), v -> x.get(p));
		return min(get(p, v -> r, tm + 1, tr), v -> x.get(p));
	}
	ll get(int p) {
		return get(p, t);
	}
	void upd(line x) {
		upd(x, t);
	}
	inline void clear() {
		t = new node(line(0, linf));
	}
} t;

int main() {
	#ifdef IOI2018
		freopen ("in.txt", "r", stdin);
		//freopen ("A.out", "w", stdout);
	#endif
	Kazakhstan
	cin >> n;
	for (int i = 1; i <= n; i++) {
		cin >> h[i];
	}
	for (int i = 1; i <= n; i++) {
		cin >> w[i];
		s[i] = s[i - 1] + w[i];
	}
	memset(dp, 0x3f, sizeof(dp));
	dp[1] = 0;
	t.upd({h[1], sqr(h[1]) + dp[1] - s[1]});
	for (int i = 2; i <= n; i++) {
		dp[i] = t.get(-2 * h[i]) + sqr(h[i]) + s[i - 1];
		t.upd({h[i], sqr(h[i]) + dp[i] - s[i]});
		/*ll add = 0;
		for (int j = i - 1; j >= 1; j--) {
			dp[i] = min(dp[i], sqr(h[i] - h[j]) + (s[i - 1] - s[j]) + dp[j]);
			add += w[j];
		}*/
	}
	cout << dp[n];
	ioi
}

Compilation message

building.cpp: In member function 'void tree::upd(line, tree::node*&, int, int)':
building.cpp:70:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   int tm = tl + tr >> 1;
            ~~~^~~~
building.cpp: In member function 'll tree::get(int, tree::node*&, int, int)':
building.cpp:81:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   int tm = tl + tr >> 1;
            ~~~^~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 1144 KB Output is correct
2 Correct 2 ms 1144 KB Output is correct
3 Correct 2 ms 1328 KB Output is correct
4 Correct 3 ms 1408 KB Output is correct
5 Correct 3 ms 1428 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 69 ms 3656 KB Output is correct
2 Correct 64 ms 4716 KB Output is correct
3 Correct 64 ms 5784 KB Output is correct
4 Correct 64 ms 6264 KB Output is correct
5 Correct 49 ms 11064 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 1144 KB Output is correct
2 Correct 2 ms 1144 KB Output is correct
3 Correct 2 ms 1328 KB Output is correct
4 Correct 3 ms 1408 KB Output is correct
5 Correct 3 ms 1428 KB Output is correct
6 Correct 69 ms 3656 KB Output is correct
7 Correct 64 ms 4716 KB Output is correct
8 Correct 64 ms 5784 KB Output is correct
9 Correct 64 ms 6264 KB Output is correct
10 Correct 49 ms 11064 KB Output is correct
11 Correct 93 ms 11064 KB Output is correct
12 Correct 72 ms 11064 KB Output is correct
13 Correct 65 ms 11064 KB Output is correct
14 Correct 79 ms 12792 KB Output is correct
15 Correct 57 ms 16988 KB Output is correct
16 Correct 56 ms 17336 KB Output is correct
17 Incorrect 31 ms 17336 KB Output isn't correct
18 Halted 0 ms 0 KB -