8VC Venture Cup 2016 - Final Round (Div2) E

贪心。当前位置满油可达的gas station中,如果有比它小的,则加油至第一个比他小的。没有,则加满油,先到达这些station中最小的。注意数的范围即可。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define LL long long

using namespace std;

const int MAXN = 200050;

int d, n, m;

int gp[MAXN], gpz[MAXN];
int fl[MAXN];	

struct gas{
	int pos, price;
}g[MAXN];

bool cmp(gas a, gas b){
	if(a.pos < b.pos) return true;
	return false;
}

int main(){
	scanf("%d%d%d", &d, &n, &m);

	gp[0] = 0, gpz[0] = 1e7;
	for(int i = 1; i <= m; i++){
		scanf("%d%d", &g[i].pos, &g[i].price);
	}

	sort(g + 1, g + 1 + m, cmp);

	for(int i = 1; i <= m; i++){
		gp[i] = g[i].pos, gpz[i] = g[i].price;
	}

	gp[m + 1] = d, gpz[m + 1] = 0;

	/*
	for(int i = 0; i<= m + 1; i++)
		cout <<gp[i] <<" "<< gpz[i] << endl;
	cout << endl;
	*/
	int mindist = -1;

	for(int i = 0; i <= m; i++){
		mindist = max(mindist, gp[i + 1] - gp[i]);
	}

//	cout << mindist << endl;

	if(mindist > n){
		puts("-1");
		return 0;
	}

	if(d <= n){
		puts("0");
		return 0;
	}

	for(int i = m; i >= 0; i--){
		if(gpz[i + 1] <= gpz[i]){
			fl[i] = i + 1;
		}
		else {
			int tmp = i + 1;
			while(gpz[fl[tmp]] > gpz[i]){
				tmp = fl[tmp];
			}
			fl[i] = fl[tmp];
		}
	}
	/*
	for(int i = 0; i<= m; i++){
		cout << fl[i] <<" ";
	}
	cout << endl;

	*/

	LL ans = 0;
	int liter = n;

	for(int l = 0; l < m+ 1; ){
		if(gp[fl[l]] - gp[l] > n){
			ans += (LL)(n - liter) * gpz[l];
			int tmp = l + 1;
			while(gp[fl[tmp]] - gp[l] <= n){
				tmp = fl[tmp];
			}
			liter = n - (gp[tmp] - gp[l]);
			l = tmp;
		}
		else{
			int tmp = fl[l];
			if(tmp == m + 1){
				ans += (LL)(d - gp[l] - liter) * gpz[l];
				break;
			}
			else{
				if(gp[tmp] - gp[l] <= liter){
					liter -= gp[tmp] - gp[l];
				}
				else{
					ans += (LL)(gp[tmp] - gp[l] - liter)*gpz[l];
					liter = 0;
				}
				l = tmp;
			}
		}
	//	cout << l << endl;
	//	system("pause");
	}
	cout << ans << endl;

}

  

时间: 2024-10-18 05:33:09

8VC Venture Cup 2016 - Final Round (Div2) E的相关文章

codeforces 8VC Venture Cup 2016 - Elimination Round C. Lieges of Legendre

C. Lieges of Legendre 题意:给n,m表示有n个为2的倍数,m个为3的倍数:问这n+m个数不重复时的最大值 最小为多少? 数据:(0 ≤ n, m ≤ 1 000 000, n + m > 0) ps:很水的题,主要是策略: 思路:由于里面每隔6就会重复一次,不好直接模拟,并且模拟的效率很低,那就二分吧!二分即上界为2单独的最大倍数与3单独时的最大倍数之和,下界为前面二者的max;之后利用判断是否mid/2 >= n && mid/3 >= m &am

8VC Venture Cup 2016 - Elimination Round

在家补补题   模拟 A - Robot Sequence #include <bits/stdc++.h> char str[202]; void move(int &x, int &y, char ch) { if (ch == 'U') x--; if (ch == 'D') x++; if (ch == 'L') y--; if (ch == 'R') y++; } int main(void) { int n; scanf ("%d", &

8VC Venture Cup 2016 - Elimination Round E. Simple Skewness(枚举+三分)

题目链接:点击打开链接 题意:给你n个数, 要求选若干个数, 使得这些数的平均数减去中位数尽量大. 思路:由于该题没有顺序问题, 排好序之后我们可以枚举中位数, 可以证明, 奇数个数一定比偶数优,然后三分中位数左右区间长度x(数的个数), 在中位数的右边选最大的x个数, 在左边也选最大的x个, 这样, 随着区间长度的增加, 平均数将先增大后减小, 或者一直减小,或者一直增大. 为什么呢? 假设第一次的区间长度是1, 那么我们选择了两边最大的两个数, 假设他们加起来取平均大于中位数, 那么对答案有

Codeforces 8VC Venture Cup 2016 - Elimination Round F. Group Projects 差分DP*****

F. Group Projects There are n students in a class working on group projects. The students will divide into groups (some students may be in groups alone), work on their independent pieces, and then discuss the results together. It takes the i-th stude

Codeforces Round #393 (Div. 2) (8VC Venture Cup 2017 - Final Round Div. 2 Edition) E - Nikita and stack 线段树好题

http://codeforces.com/contest/760/problem/E 题目大意:现在对栈有m个操作,但是顺序是乱的,现在每输入一个操作要求你输出当前的栈顶, 注意,已有操作要按它们的时间顺序进行. 思路:线段树好题啊啊,我们把push当成+1, pop当成-1,按操作的位置建立线段树,那么如何 寻找栈顶呢,我们计算每个点的后缀,栈顶就是下标最大的>0的后缀,我们拿后缀建立线段树, 剩下的就是区间加减法,和求区间最大值啦. #include<bits/stdc++.h>

VK Cup 2016 - Qualification Round 1 - D. Running with Obstacles

题意 : 在 x 坐标轴上,从 0 到 m 点,中途有 n 个障碍,遇到障碍可以 跳,但是每次跳之前需要一段 距离为 s 的“助跑 ”,而且每次跳跃距离不能超过 d ,不能落在障碍点上:给出 n,m,s,d,接下来 n 个数 ,表示障碍的坐标.输入保证起点和终点不会有障碍,不会有两个障碍在同一位置. 输出到达终点的过程.如果不能到达终点输出“IMPOSSIBLE” . 解题: 模拟啊模拟(好烦好烦= =) 首先 他一定是跑到距离障碍最近的位置才跳的,这样可以跳的更远些.然后两个障碍之间相距 要大

Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) A. Single Wildcard Pattern Matching B. Pair of Toys C. Bracket Subsequence D. Array Restoration-区间查询最值(RMQ(ST))

Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) A. Single Wildcard Pattern Matching 题意就是匹配字符的题目,打比赛的时候没有看到只有一个" * ",然后就写挫了,被hack了,被hack的点就是判一下只有一个" * ". 1 //A 2 #include<iostream> 3 #include<cstdio&g

ZOJ 1584:Sunny Cup 2003 - Preliminary Round(最小生成树&amp;amp;&amp;amp;prim)

Sunny Cup 2003 - Preliminary Round April 20th, 12:00 - 17:00 Problem E: QS Network In the planet w-503 of galaxy cgb, there is a kind of intelligent creature named QS. QScommunicate with each other via networks. If two QS want to get connected, they

DP VK Cup 2012 Qualification Round D. Palindrome pairs

题目地址:http://blog.csdn.net/shiyuankongbu/article/details/10004443 1 /* 2 题意:在i前面找回文子串,在i后面找回文子串相互配对,问有几对 3 DP:很巧妙的从i出发向两头扩展判断是否相同来找回文串 4 dpr[i] 代表记录从0到i间的回文子串的个数,dpl[i] 代表记录i之后的回文子串个数 5 两两相乘就行了 6 详细解释:http://blog.csdn.net/shiyuankongbu/article/details