您的位置:首页 > 其它

Codeforces Round #326 (Div. 2) A. Duff and Meat

2015-10-16 10:30 309 查看
A. Duff and Meat

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

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, ..., 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 test(s)

Input
3
1 3
2 2
3 1


Output
10


Input
3
1 3
2 1
3 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.

题目大意:女票要吃n天的肉,每天吃ai千克,每千克pi元,可以提前买,问最少多少钱可以让女票吃到n天的肉

解题思路:只需要找该天,以及该天之前出现的最低价格,并以该价格买入即可,不需要数组

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define LL long long
const int MAX=1<<30;
using namespace std;
int main()
{
// freopen("in.txt","r",stdin);
int n,a,p,mina=101,ans=0;
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d%d",&a,&p);
if(p<mina)
mina=p;
ans+=a*mina;
}
cout<<ans<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息