码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 5009 Paint Pearls _(:зゝ∠)_2014 ACM/ICPC Asia Regional Xi'an Online

时间:2014-09-14 20:49:28      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   2014   sp   on   c   amp   

呵呵

#include <cstdio>
#include <algorithm>
#include <iostream>
#include <cstring>
typedef long long ll;
using namespace std;
const int N = 5 * 10000 + 5;

int xval[N], dep;
int n, a[N], pre[N];
ll d[N];
int pos[300], dd;

void work() {
	dep = dd = 0;
	for (int i = 1; i <= n; ++i) {
		scanf("%d", &a[i]);
		if (i > 1 && a[i] == a[i - 1]) {
			-- i;
			-- n;
			continue;
		}
		xval[dep++] = a[i];
	}

	sort(xval, xval + dep);
	dep = unique(xval, xval + dep) - xval;
	for (int i = 1; i <= n; ++i)
		a[i] = lower_bound(xval, xval + dep, a[i]) - xval;

	d[0] = 0;
	memset(pre, -1, sizeof pre);
	for (int i = 1; i <= n; ++i) {
		d[i] = i;
		bool done = false;
		for (int j = dd; j >= 1; --j)
			if (a[pos[j]] == a[i]) {
				for (int k = j; k >= 2; --k)
					pos[k] = pos[k - 1];
				pos[1] = i;
				done = true;
				break;
			}
		if (!done) {
			for (int j = dd + 1; j >= 2; --j)
				pos[j] = pos[j - 1];
			pos[1] = i;
			if (++dd > 250)
				dd = 250;
		}

		for (int j = 1; j <= dd && (j - 1) * (j - 1) <= i; ++j) {
			d[i] = min(d[i], d[pos[j]] + (j - 1) * (j - 1));
		}
		d[i] = min(d[i], (ll)dd * dd);
		pre[a[i]] = i;
	}

	printf("%I64d\n", d[n]);
}

int main() {
	while (~scanf("%d", &n))
		work();
	return 0;
}


HDU 5009 Paint Pearls _(:зゝ∠)_2014 ACM/ICPC Asia Regional Xi'an Online

标签:io   os   ar   for   2014   sp   on   c   amp   

原文地址:http://blog.csdn.net/qq574857122/article/details/39272033

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!