博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
P2885 [USACO07NOV]电话线Telephone Wire
阅读量:5928 次
发布时间:2019-06-19

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

题目描述

Farmer John's cows are getting restless about their poor telephone service; they want FJ to replace the old telephone wire with new, more efficient wire. The new wiring will utilize N (2 ≤ N ≤ 100,000) already-installed telephone poles, each with some heighti meters (1 ≤ heighti ≤ 100). The new wire will connect the tops of each pair of adjacent poles and will incur a penalty cost C × the two poles' height difference for each section of wire where the poles are of different heights (1 ≤ C ≤ 100). The poles, of course, are in a certain sequence and can not be moved.

Farmer John figures that if he makes some poles taller he can reduce his penalties, though with some other additional cost. He can add an integer X number of meters to a pole at a cost of X2.

Help Farmer John determine the cheapest combination of growing pole heights and connecting wire so that the cows can get their new and improved service.

给出若干棵树的高度,你可以进行一种操作:把某棵树增高h,花费为h*h。

操作完成后连线,两棵树间花费为高度差*定值c。

求两种花费加和最小值。

输入输出格式

输入格式:

 

  • Line 1: Two space-separated integers: N and C

  • Lines 2..N+1: Line i+1 contains a single integer: heighti

 

输出格式:

 

  • Line 1: The minimum total amount of money that it will cost Farmer John to attach the new telephone wire.

 

输入输出样例

输入样例#1:
5 223514
输出样例#1:15
一开始自己写了个DP,居然能过样例 特别兴奋, 但是交上去只有70分 发现时间复杂度有点高 思路比较简单: 我们可以很容易的看出这道题具有无后效性, 用dp[i][j]表示前i棵树,第i棵树高度为j的最小代价 先预处理一下dp[1][j],然后对于每一棵树,我们枚举它的前一棵树的高度和这棵树的高度, 计算一下就好 时间复杂度n*h*h
1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 using namespace std;10 const int MAXN=100001;11 const int INF =0x7f7f7f7f;12 inline void read(int &n)13 {14 char c='+';bool flag=0;n=0;15 while(c<'0'||c>'9'){c=getchar();if(c=='-')flag=1;}16 while(c>='0'&&c<='9')n=n*10+c-48,c=getchar();17 }18 int dp[MAXN][201];// 第i棵树,高度为j的最小花费19 int n,C; 20 int a[MAXN];21 int maxheight;22 int main()23 {24 read(n);read(C);25 memset(dp,INF,sizeof(dp));26 for(int i=1;i<=n;i++)27 read(a[i]),maxheight=max(maxheight,a[i]);28 for(int i=a[1];i<=maxheight;i++)29 dp[1][i]=(i-a[1])*(i-a[1]);30 31 for(int i=2;i<=n;i++)//枚举所有树 32 for(int j=a[i];j<=maxheight;j++)//枚举这棵树的高度 33 for(int k=a[i-1];k<=maxheight;k++)//枚举前一棵树的高度 34 dp[i][j]=min(dp[i][j],35 ((j-a[i])*(j-a[i])+(dp[i-1][k])+abs(j-k)*C));36 37 38 int ans=0x7fffff;39 for(int i=a[n];i<=maxheight;i++)40 ans=min(ans,dp[n][i]);41 printf("%d",ans);42 return 0;43 }
View Code
然后化简一下式子

 

 
1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 const int MAXN=300005; 7 const int INF =0x7fffff; 8 const int maxheight=100; 9 int dp[301];// 第i棵树,高度为j的最小花费10 int f[301];11 int n,C;12 int a[MAXN];13 int bgsum[MAXN];14 int edsum[MAXN];15 int main() {16 scanf("%d%d",&n,&C);17 for(int i=0; i
=0; j--)33 edsum[j]=min(edsum[j+1],f[j]+C*j);34 35 for(int j=a[i]; j<=maxheight; j++) //枚举这棵树的高度36 dp[j]=min(edsum[j]-C*j,bgsum[j]+C*j)+(j-a[i])*(j-a[i]);37 }38 int ans=0x7fffff;39 for(int i=a[n-1]; i<=maxheight; i++)40 ans=min(ans,dp[i]);41 printf("%d",ans);42 return 0;43 }
View Code
 

 

 

转载地址:http://lbevx.baihongyu.com/

你可能感兴趣的文章
java 线程public void run()中值如何返回
查看>>
版本管理的倚天剑 --- git
查看>>
Kotlin初体验
查看>>
干货 | 万字长文带你回顾OCC的前世今生
查看>>
mysql刷Hive建表语句
查看>>
Kubernetes集群中基于 CRD 实现分批发布
查看>>
反射与动态代理原理
查看>>
视频直播系统搭建过程中用到的协议
查看>>
Golang基于Gitlab CI/CD部署方案
查看>>
新入手的电脑
查看>>
不等食品获750万元Pre-A轮融资,迭代资本领投
查看>>
【JAVA零基础入门系列】Day8 Java的控制流程
查看>>
hashID:hash算法识别工具
查看>>
grunt增量式任务,遇到的一些坑
查看>>
网站国际化(i18n)应该怎么做?i18n-node + handlebars实现的例子
查看>>
ARMS V2.4.3发布,应用监控全新支持内存快照分析、全息排查等功能。
查看>>
K均值聚类算法的MATLAB实现
查看>>
美国科技股受特朗普影响遭华尔街抛售,股价大跌
查看>>
学生选课系统---数据库课程设计SQL Server
查看>>
Git的简单使用
查看>>