在那边985月赛皮,掉分预定

  • Editorial

C - Half and Half


Time limit : 2sec / Memory limit : 256MB

Score : 300 points

Problem Statement

"Pizza At", a fast food chain, offers three kinds of pizza: "A-pizza", "B-pizza" and "AB-pizza". A-pizza and B-pizza are completely different pizzas, and AB-pizza is one half of A-pizza and one half of B-pizza combined together. The prices of one A-pizza, B-pizza and AB-pizza are A yen, B yen and C yen (yen is the currency of Japan), respectively.

Nakahashi needs to prepare X A-pizzas and Y B-pizzas for a party tonight. He can only obtain these pizzas by directly buying A-pizzas and B-pizzas, or buying two AB-pizzas and then rearrange them into one A-pizza and one B-pizza. At least how much money does he need for this? It is fine to have more pizzas than necessary by rearranging pizzas.

Constraints

  • 1≤A,B,C≤5000
  • 1≤X,Y≤105
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

A B C X Y

Output

Print the minimum amount of money required to prepare X A-pizzas and Y B-pizzas.


Sample Input 1

Copy
1500 2000 1600 3 2

Sample Output 1

Copy
7900

It is optimal to buy four AB-pizzas and rearrange them into two A-pizzas and two B-pizzas, then buy additional one A-pizza.


Sample Input 2

Copy
1500 2000 1900 3 2

Sample Output 2

Copy
8500

It is optimal to directly buy three A-pizzas and two B-pizzas.


Sample Input 3

Copy
1500 2000 500 90000 100000

Sample Output 3

Copy
100000000

It is optimal to buy 200000 AB-pizzas and rearrange them into 100000 A-pizzas and 100000 B-pizzas. We will have 10000 more A-pizzas than necessary, but that is fine.


三种情况直接列举下

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{ll a,b,c,x,y;cin>>a>>b>>c>>x>>y;ll ans=max(x,y)*2*c;ans=min(ans,min(x,y)*2*c+(y>x?(y-x)*b:(x-y)*a));ans=min(ans,a*x+b*y);cout<<ans;return 0;
}

D - Static Sushi


Time limit : 2sec / Memory limit : 256MB

Score : 500 points

Problem Statement

"Teishi-zushi", a Japanese restaurant, is a plain restaurant with only one round counter. The outer circumference of the counter is C meters. Customers cannot go inside the counter.

Nakahashi entered Teishi-zushi, and he was guided to the counter. Now, there are N pieces of sushi (vinegared rice with seafood and so on) on the counter. The distance measured clockwise from the point where Nakahashi is standing to the point where the i-th sushi is placed, is xi meters. Also, the i-th sushi has a nutritive value of vi kilocalories.

Nakahashi can freely walk around the circumference of the counter. When he reach a point where a sushi is placed, he can eat that sushi and take in its nutrition (naturally, the sushi disappears). However, while walking, he consumes 1 kilocalories per meter.

Whenever he is satisfied, he can leave the restaurant from any place (he does not have to return to the initial place). On balance, at most how much nutrition can he take in before he leaves? That is, what is the maximum possible value of the total nutrition taken in minus the total energy consumed? Assume that there are no other customers, and no new sushi will be added to the counter. Also, since Nakahashi has plenty of nutrition in his body, assume that no matter how much he walks and consumes energy, he never dies from hunger.

Constraints

  • 1≤N≤105
  • 2≤C≤1014
  • 1≤x1<x2<…<xN<C
  • 1≤vi≤109
  • All values in input are integers.

Subscores

  • 300 points will be awarded for passing the test set satisfying N≤100.

Input

Input is given from Standard Input in the following format:

N C
x1 v1
x2 v2
:
xN vN

Output

If Nakahashi can take in at most c kilocalories on balance before he leaves the restaurant, print c.


Sample Input 1

Copy
3 20
2 80
9 120
16 1

Sample Output 1

Copy
191

There are three sushi on the counter with a circumference of 20 meters. If he walks two meters clockwise from the initial place, he can eat a sushi of 80kilocalories. If he walks seven more meters clockwise, he can eat a sushi of 120 kilocalories. If he leaves now, the total nutrition taken in is 200 kilocalories, and the total energy consumed is 9 kilocalories, thus he can take in 191 kilocalories on balance, which is the largest possible value.


Sample Input 2

Copy
3 20
2 80
9 1
16 120

Sample Output 2

Copy
192

The second and third sushi have been swapped. Again, if he walks two meters clockwise from the initial place, he can eat a sushi of 80 kilocalories. If he walks six more meters counterclockwise this time, he can eat a sushi of 120 kilocalories. If he leaves now, the total nutrition taken in is 200 kilocalories, and the total energy consumed is 8 kilocalories, thus he can take in 192 kilocalories on balance, which is the largest possible value.


Sample Input 3

Copy
1 100000000000000
50000000000000 1

Sample Output 3

Copy
0

Even though the only sushi is so far that it does not fit into a 32-bit integer, its nutritive value is low, thus he should immediately leave without doing anything.


Sample Input 4

Copy
15 10000000000
400000000 1000000000
800000000 1000000000
1900000000 1000000000
2400000000 1000000000
2900000000 1000000000
3300000000 1000000000
3700000000 1000000000
3800000000 1000000000
4000000000 1000000000
4100000000 1000000000
5200000000 1000000000
6600000000 1000000000
8000000000 1000000000
9300000000 1000000000
9700000000 1000000000

Sample Output 4

Copy
6500000000

All these sample inputs above are included in the test set for the partial score.


这个需要dp的,想不到哇,还要前缀和优化

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e5+5;
long long a[N],b[N],c[N],d[N],e[N],f[N],m,n;
int main()
{cin>>n>>m;for(int i=1; i<=n; i++)cin>>a[i]>>b[i],c[i]=m-a[i],d[i]=b[i],b[i]+=b[i-1];for(int i=n; i>=0; i--)d[i]+=d[i+1];for(int i=1; i<=n; i++)e[i]=max(e[i-1],b[i]-2*a[i]),f[i]=max(f[i-1],b[i]-a[i]);long long ans=0;for(int i=1; i<=n+1; i++)ans=max(ans,max(e[i-1]+d[i]-c[i],f[i-1]+d[i]-2*c[i]));cout<<ans;return 0;
}

转载于:https://www.cnblogs.com/BobHuang/p/8910519.html

AtCoder Regular Contest 096相关推荐

  1. AtCoder Regular Contest 065

    AtCoder Regular Contest 065 C - Daydream Score : 300300300 points 倒着来就行了,正着来会产生歧义匹配,dreamer,dreamdre ...

  2. AtCoder Regular Contest 100 D - Equal Cut 思维 + 前缀和

    传送门 文章目录 题意: 思路: 题意: 给你一个数组aaa,你要将其分成四份,让这四份中和的最大值−-−最小值最小,输出这个最小值. n≤2e5,ai≤1e9n\le2e5,a_i\le1e9n≤2 ...

  3. AtCoder Regular Contest 100 E - Or Plus Max Sos dp

    传送门 文章目录 题意: 思路: 题意: 给你一个长度为2n2^n2n的数组,让你对于所有的1≤k≤2n−11\le k\le 2^n-11≤k≤2n−1求最大的ai+aj,0≤i<j≤2n−1 ...

  4. AtCoder Regular Contest 061 E - Snuke‘s Subway Trip(建图 + dijkstra最短路 / 0/1bfs / 并查集)

    AtCoder Regular Contest 061 E - Snuke's Subway Trip problem 洛谷翻译 my idea 最近一直在做网络流,所以一读这题后,我就想到了最小费用 ...

  5. NOMURA Programming Contest 2021(AtCoder Regular Contest 121)

    文章目录 A - 2nd Greatest Distance B - RGB Matching C - Odd Even Sort D - 1 or 2 E - Directed Tree F - L ...

  6. AtCoder题解——AtCoder Regular Contest 107——B - Quadruple

    题目相关 题目链接 AtCoder Regular Contest 107 B 题,https://atcoder.jp/contests/arc107/tasks/arc107_b. Problem ...

  7. AtCoder Regular Contest 071 D - 井井井 / ###

    题目:http://arc071.contest.atcoder.jp/tasks/arc071_b 题意: 有一个二维的平面,给你xn根竖线和ym根横线,问这些线围成的长方形(正方形)的面积和(要求 ...

  8. AtCoder Beginner Contest 096 题解

    比赛地址 https://abc096.contest.atcoder.jp A - Day of Takahashi 题目大意 我们把月和日相同的日期叫做"Takahashi日" ...

  9. AtCoder Regular Contest 062 E - AtCoDeerくんと立方体づくり / Building Cubes with AtCoDeer

    题目传送门:https://arc062.contest.atcoder.jp/tasks/arc062_c 题目大意: 给你\(N\)块正方形木板,每块木板四角有四种颜色(可以相同),木板中央有编号 ...

最新文章

  1. [GRYZ2015]快排练习
  2. GetGeneratedKeysHelper 与反射
  3. 对话中情绪识别,研究挑战、数据集和前沿方法
  4. python3 django开发_python3开发进阶-Django框架学习前的小项目(一个简单的学员管理系统)...
  5. unsigned char与char的区别
  6. 补习系列(9)-springboot 定时器,你用对了吗
  7. Linux 命令(134)—— groupmod 命令
  8. [NOI2019]序列
  9. 免费下载《程序员面试宝典》.pdf
  10. react ssr方法
  11. div css3 border-radius 之圆角 div圆角 图片圆角
  12. Python包导入时重命名
  13. 自动以管理员身份运行bat脚本
  14. 纯CSS实现四种方式文本反差色效果
  15. React 初探 [五] React 组件的生命周期
  16. 我的世界电脑版服务器区块怎么显示,我的世界区块显示指令 | 手游网游页游攻略大全...
  17. 数控机床是什么编程php吗,数控车床编程实例
  18. python去掉两边空格,Python去除字符串两端空格的方法
  19. Vue中的@blur/@focus事件
  20. 第九章 思科IOS与华为VRP系统及命令行配置

热门文章

  1. 佳信客服接口文档 REST API(第二部分)包含用户、聊天室、群聊、消息管理,通用接口数据结构、通用接口返回码
  2. 为知笔记使用方法与技巧
  3. 用java设计一个BMI计算器
  4. 凹形长方形的周长计算_《巧求周长》教学设计
  5. 学校智慧校园计算机房介绍,资阳雁江区三年打造全区智慧校园,智慧机房比肩并起...
  6. Mysql 对比查询比较
  7. 智能家居黑科技!首款3D人脸识别智能锁发布 搭载百度智能云函谷物联安全系统...
  8. C语言 | 函数实现输出I love you
  9. Android 状态栏那些小坑?
  10. java有n个球队进行足球比赛_JAVA与足球队的相似点