[luoguP2672] 판매원(욕심+트리 배열+우선 대기열)

1572 단어
전송문
 
욕심고구마 증명은 할 수 없다...
매번 가장 큰 것을 찾으면 됩니다. 가장 큰 것을 찾으면 수열은 좌우 양쪽으로 나뉘고 왼쪽은 stl 우선 대기열로 유지하고 오른쪽은 나무 모양의 그룹으로 유지합니다.
(세그먼트 트리 시간 초과...)
 

코드

#include 
#include 
#include 
#define N 100001
#define ls now << 1
#define rs now << 1 | 1
#define max(x, y) (p[x].a * 2 + p[x].b > p[y].a * 2 + p[y].b ? (x) : (y))

int n, last, now, ans, M[N];
std::priority_queue  q; 

struct node
{
	int a, b;
}p[N];

inline int read()
{
	int x = 0, f = 1;
	char ch = getchar();
	for(; !isdigit(ch); ch = getchar()) if(ch == '-') f = -1;
	for(; isdigit(ch); ch = getchar()) x = (x << 1) + (x << 3) + ch - '0';
	return x * f;
}

inline void add(int x, int d)
{
	for(; x; x -= x & -x) M[x] = max(M[x], d);
}

inline int query(int x)
{
	int ret = 0;
	for(; x <= n; x += x & -x) ret = max(ret, M[x]);
	return ret;
}

int main()
{
	int i, j, x;
	n = read();
	for(i = 1; i <= n; i++) p[i].a = read();
	for(i = 1; i <= n; i++) p[i].b = read();
	for(i = 1; i <= n; i++) add(i, i);
	last = 0;
	for(i = 1; i <= n; i++)
	{
		now = query(last + 1);
		if(q.empty() || (q.top() < (p[now].a - p[last].a) * 2 + p[now].b))
		{
			for(j = last + 1; j < now; j++) q.push(p[j].b);
			ans += (p[now].a - p[last].a) * 2 + p[now].b;
			last = now;
		}
		else
		{
			ans += q.top();
			q.pop();
		}
		printf("%d
", ans); } return 0; }

  
전재 대상:https://www.cnblogs.com/zhenghaotian/p/7087246.html

좋은 웹페이지 즐겨찾기