博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
训练1——A
阅读量:4975 次
发布时间:2019-06-12

本文共 1717 字,大约阅读时间需要 5 分钟。

链接:

Duff is addicted to meat! Malek wants to keep her happy for n days. In order to be happy in i-th day, she needs to eat exactly aikilograms of meat.

There is a big shop uptown and Malek wants to buy meat for her from there. In i-th day, they sell meat for pi dollars per kilogram. Malek knows all numbers a1, ..., an and p1, ..., pn. In each day, he can buy arbitrary amount of meat, also he can keep some meat he has for the future.

Malek is a little tired from cooking meat, so he asked for your help. Help him to minimize the total money he spends to keep Duff happy for n days.

Input

The first line of input contains integer n (1 ≤ n ≤ 105), the number of days.

In the next n lines, i-th line contains two integers ai and pi (1 ≤ ai, pi ≤ 100), the amount of meat Duff needs and the cost of meat in that day.

Output

Print the minimum money needed to keep Duff happy for n days, in one line.

Sample Input

Input
3 1 3 2 2 3 1
Output
10
Input
3 1 3 2 1 3 2
Output
8

Hint

In the first sample case: An optimal way would be to buy 1 kg on the first day, 2 kg on the second day and 3 kg on the third day.

In the second sample case: An optimal way would be to buy 1 kg on the first day and 5 kg (needed meat for the second and third day) on the second day.

题意:

Duff这天要吃足够的肉才是快乐的一天,给出两个数,第一个数为Duff这天吃的肉的量,第二个数是这天的肉是多少钱一斤,要让Duff每天都快乐最少需要多少钱

解析:

要注意的事,这天多买的肉可以给以后任意哪天使用,所以找到最少的价钱就行

代码:

#include 
using namespace std;int main(){ int n; cin>>n; int minn=10000; int sum=0; int a,p; for(int i=0;i
>a>>p; if(minn>p) minn=p; sum+=a*minn; } cout<
<

 

转载于:https://www.cnblogs.com/q-c-y/p/5522203.html

你可能感兴趣的文章
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
单片机复位电路
查看>>
php json_decode失败,返回null
查看>>
3-day3-list-truple-map.py
查看>>
Edit控件显示多行文字
查看>>
JS第二周
查看>>
dataTable.NET的search box每輸入一個字母進行一次檢索的問題
查看>>
Python 文件处理
查看>>
邻接表详解
查看>>