BZOJ1740: [Usaco2005 mar]Yogurt factory 奶酪工厂

Posted Blue233333

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ1740: [Usaco2005 mar]Yogurt factory 奶酪工厂相关的知识,希望对你有一定的参考价值。

n<=10000天每天Ci块生产一东西,S块保存一天,每天要交Yi件东西,求最少花多少钱。

这个我都不知道归哪类了。。

技术分享
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 #include<algorithm>
 5 //#include<iostream>
 6 using namespace std;
 7 
 8 int n,m;
 9 #define maxn 10011
10 int a,b;
11 #define LL long long
12 int main()
13 {
14     scanf("%d%d",&n,&m);LL Min=1e15,ans=0;
15     for (int i=1;i<=n;i++)
16     {
17         scanf("%d%d",&a,&b);
18         a-i*m<Min && (Min=a-i*m);
19         ans+=(Min+i*m)*b;
20     }
21     printf("%lld\n",ans);
22     return 0;
23 }
View Code

 

以上是关于BZOJ1740: [Usaco2005 mar]Yogurt factory 奶酪工厂的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ1680: [Usaco2005 Mar]Yogurt factory

bzoj1742[Usaco2005 nov]Grazing on the Run 边跑边吃草*&&bzoj3074[Usaco2013 Mar]The Cow Run*

BZOJ1739: [Usaco2005 mar]Space Elevator 太空电梯

最小生成树BZOJ1682[Usaco2005 Mar]-Out of Hay 干草危机

BZOJ1738: [Usaco2005 mar]Ombrophobic Bovines 发抖的牛

BZOJ 1680 [Usaco2005 Mar]Yogurt factory:贪心只用考虑上一个