博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Duff and Meat(贪心)
阅读量:4582 次
发布时间:2019-06-09

本文共 1570 字,大约阅读时间需要 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 ai kilograms 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, ..., anand 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.

Examples

Input

31 32 23 1

Output

10

Input

31 32 13 2

Output

8

Note

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.

用贪心的思想来想,如果肉的价格低的话可以按照低的囤货,从而保证当前是价格最低的,也就是当前最优解,从而最后得到的一定也是最优解

代码:

#include
#include
#include
#include
using namespace std;int main() { int n; cin>>n; int a,p; int sum=0; int min=0x3f3f3f; for(int t=0; t

 

转载于:https://www.cnblogs.com/Staceyacm/p/10781941.html

你可能感兴趣的文章
宜信微服务任务执行器
查看>>
realsense blog 国外某人
查看>>
点击按钮将内容赋值到粘贴板
查看>>
DevExpress12.2.6 安装顺序记录
查看>>
.Net基础篇_学习笔记_第四天_switch-case02
查看>>
linux之基本命令讲解
查看>>
DAG上dp思想
查看>>
写文件
查看>>
HDU5367 思维map // 动态线段树
查看>>
洛谷P1501 动态树(LCT)
查看>>
usaco Shuttle Puzzle
查看>>
SQLServer数据库的状态一直都是正在还原
查看>>
EM算法总结
查看>>
剑指Offer——二叉树的下一个节点
查看>>
关于virtualenvwrapper的python, pip 的版本的问题
查看>>
iOS获取APP的版本号和名称
查看>>
如何用keytool导入证书
查看>>
[转]linux14.04下caffe的安装步骤
查看>>
重操JS旧业第十弹:闭包
查看>>
JSP 自动刷新
查看>>