记录编号 |
467181 |
评测结果 |
AAAAA |
题目名称 |
混合牛奶 |
最终得分 |
100 |
用户昵称 |
Shirry |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2017-10-30 09:50:36 |
内存使用 |
15.55 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct poi{int v,u;}p[2000010];
int n,m;
bool cmp(poi a,poi b){return a.v<b.v;}
int main(){
freopen("milk.in","r",stdin);
freopen("milk.out","w",stdout);
scanf("%d%d",&m,&n);
for(int i=1;i<=n;i++)scanf("%d%d",&p[i].v,&p[i].u);
sort(p+1,p+1+n,cmp);
int now=0,ans=0;
for(int i=1;i<=n;i++){
if(now+p[i].u>m){ans+=(m-now)*p[i].v;break;}
ans+=p[i].u*p[i].v,now+=p[i].u;
}
printf("%d\n",ans);
return 0;
}