博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2017ICPC北京 J:Pangu and Stones
阅读量:6275 次
发布时间:2019-06-22

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

#1636 : Pangu and Stones

时间限制:1000ms
单点时限:1000ms
内存限制:256MB

描述

In Chinese mythology, Pangu is the first living being and the creator of the sky and the earth. He woke up from an egg and split the egg into two parts: the sky and the earth.

At the beginning, there was no mountain on the earth, only stones all over the land.

There were N piles of stones, numbered from 1 to N. Pangu wanted to merge all of them into one pile to build a great mountain. If the sum of stones of some piles was S, Pangu would need S seconds to pile them into one pile, and there would be S stones in the new pile.

Unfortunately, every time Pangu could only merge successive piles into one pile. And the number of piles he merged shouldn't be less than L or greater than R.

Pangu wanted to finish this as soon as possible.

Can you help him? If there was no solution, you should answer '0'.

输入

There are multiple test cases.

The first line of each case contains three integers N,L,R as above mentioned (2<=N<=100,2<=L<=R<=N).

The second line of each case contains N integers a1,a2 …aN (1<= ai  <=1000,i= 1…N ), indicating the number of stones of  pile 1, pile 2 …pile N.

The number of test cases is less than 110 and there are at most 5 test cases in which N >= 50.

输出

For each test case, you should output the minimum time(in seconds) Pangu had to take . If it was impossible for Pangu to do his job, you should output  0.

样例输入
3 2 21 2 33 2 31 2 34 3 31 2 3 4
样例输出
960
区间dp,当时我想的做法都是TLE的
我这个好像不太好,多了一层复杂度
#include
using namespace std;const int N=105;int a[N],dp[N][N][N],n,l,r;int main(){ while(~scanf("%d%d%d",&n,&l,&r)) { memset(dp,-1,sizeof dp); for(int i=1; i<=n; i++) { scanf("%d",a+i); dp[i][i][1]=0; a[i]+=a[i-1]; } for(int z=2; z<=n; z++) for(int i=1; i<=n; i++) { int j=i+z-1; for(int k=2; k<=r; k++) for(int t=i; t
f)dp[i][j][k]=f; if(k>=l&&k<=r&&(dp[i][j][1]==-1||dp[i][j][1]>dp[i][j][k]+a[j]-a[i-1])) dp[i][j][1]=dp[i][j][k]+a[j]-a[i-1]; } } if(dp[1][n][1]==-1)printf("%d\n",0); else printf("%d\n",dp[1][n][1]); } return 0;}

 

转载于:https://www.cnblogs.com/BobHuang/p/8167362.html

你可能感兴趣的文章
爬虫获取网页,出现乱码问题
查看>>
再有人问你Java内存模型是什么,就把这篇文章发给他
查看>>
控制台程序隐藏方法总结(四种)
查看>>
nginx负载均衡
查看>>
企业能源管理系统的基本要求和主要内容
查看>>
JAVA基础学习之-AQS的实现原理分析
查看>>
IT兄弟连 JavaWeb教程 监听器4
查看>>
[喵咪BELK实战(3)] logstash+filebeat搭建
查看>>
线程中无法注入bean
查看>>
jetty的xml配置文件
查看>>
Hyper-V:虚拟网络配置
查看>>
按位运算符操作
查看>>
java8对接口的改变
查看>>
springboot中使用filter时注入bean为null的解决办法
查看>>
唠唠SE的IO-04——缓冲输入输出流
查看>>
hive join 数据倾斜 真实案例
查看>>
Object-C代码练习【文件管理练习(每秒写入一个时间到文件)】
查看>>
Redis列表
查看>>
文件查找工具之find命令详解
查看>>
linux命令 — lsof 查看进程打开那些文件 或者 查看文件给那个进程使用
查看>>