#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 2
1 2 3
3 2 3
1 2 3
4 3 3
1 2 3 4
样例输出
9
6
0

题意:给你n个数字,每次只能将连续的l到r个数字合并,花费为合并数字的和,问最后将所有数字合为一个数字的最小花费

解题思路:区间dp,dp[i][j][k]表示以i为开头j为结尾的区间分为k份需要的最少花费,dp[i][j][k]=min(dp[i][j][k],dp[i][p][k-1]+dp[p+1][j][1]),dp[i][j][1]=dp[i][j][k]+sum[j]-sum[i-1](k>=l&&k<=r)

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <functional>using namespace std;#define LL long long
const int INF = 0x3f3f3f3f;int n, l, r;
int a[109], dp[109][109][109], sum[109];int main()
{while (~scanf("%d%d%d", &n, &l, &r)){memset(dp, INF, sizeof dp);sum[0] = 0;for (int i = 1; i <= n; i++)scanf("%d", &a[i]), dp[i][i][1] = 0, sum[i] = sum[i-1] + a[i];for (int i = 2; i <= n; i++){for (int j = 1; j + i - 1 <= n; j++){for (int k = 2; k <= i; k++){for (int p = j; p <= j + i - 2; p++)dp[j][i + j - 1][k] = min(dp[j][j + i - 1][k], dp[j][p][k - 1] + dp[p + 1][j + i - 1][1]);if (k >= l&&k <= r) dp[j][j + i - 1][1] = min(dp[j][j + i - 1][1], dp[j][j + i - 1][k] + sum[j + i - 1] - sum[j - 1]);}}}if (dp[1][n][1] >= INF) dp[1][n][1] = 0;printf("%d\n", dp[1][n][1]);}return 0;
}

hihocoder1636-Pangu and Stones相关推荐

  1. [ICPC 北京 2017 J题]HihoCoder 1636 Pangu and Stones

    #1636 : Pangu and Stones 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 In Chinese mythology, Pangu is the fi ...

  2. 2017ICPC北京 J:Pangu and Stones(区间DP)

    #1636 : Pangu and Stones 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 In Chinese mythology, Pangu is the fi ...

  3. hihocoder 1636 Pangu and Stones

    题目链接:Pangu and Stones 题目大意:给出n堆石头,每次最少合并其中l堆,最多合并r堆,合并的代价是这x堆的石头总和,问合成1堆最少需要多少代价 题目思路:用 f[l][r][k] 表 ...

  4. Pangu and Stones(区间 dp)

    Pangu and Stones 状态转移方程 d[i][j][k] 代表 i 到 j 这段区间合并成 k 段的最小花费 k != 1 :dp[i][j][k] = min(dp[i][kk][[1] ...

  5. icpc 2017北京 J题 Pangu and Stones 区间DP

    #1636 : Pangu and Stones 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 In Chinese mythology, Pangu is the fi ...

  6. Pangu and Stones HihoCoder - 1636 (区间DP) 2017区域赛北京站

    Pangu and Stones 题目链接:HihoCoder - 1636 题意:现有n堆石子,每次合并k堆石子,L<=k<=R,每次合并石子花费代价是合并的石子的总数量:问最后能否合并 ...

  7. Pangu and Stones 解题报告

    题目: 描述 In Chinese mythology, Pangu is the first living being and the creator of the sky and the eart ...

  8. 2017 北京赛区 J题 Pangu and Stones 【区间DP】

    题目链接:https://vjudge.net/problem/HihoCoder-1636: 题意:n堆石子,每次可以合并连续的 [ L~R ]堆石子,求最少的代价: /* 思路:区间DP;dp[i ...

  9. Pangu and Stones(区间DP)

    感受 还是挺容易想到的区间DP,但是如果对区间DP理解不透彻可能会TLE还是挺容易想到的区间DP,但是如果对区间DP理解不透彻\\可能会TLE还是挺容易想到的区间DP,但是如果对区间DP理解不透彻可能 ...

  10. 区间dp(Pangu and Stones)

    题意:给n堆石头,标号为1到n,每堆石头有一定的个数,每次可以选择[L,R]中任意一个数那么多堆来合并,每次合并的花费是合并后石头的的总个数,求花费的最小值 思路:dp[i][j][p]代表把区间[i ...

最新文章

  1. boost::trait::is_reference 的研究与修改
  2. Corejava -异常
  3. SQLserver模糊查询
  4. SpringMVC获取参数的几种方式
  5. CF917D-Stranger Trees【矩阵树定理,高斯消元】
  6. Java Process中waitFor()的问题
  7. [Leetcode][第116 117题][JAVA][填充每个节点的下一个右侧节点指针][BFS][链表前驱节点]
  8. python有趣函数_python中有趣的函数
  9. 实验5 数独游戏界面设计
  10. 数据清洗挑战Day1 | 手把手教你处理数据集中的缺失值
  11. 天空之城用计算机弹歌,原神琴谱天空之城怎么弹?天空之城琴谱一览
  12. docker-compose启动hyperf项目
  13. MAX7219数码管+RTC时钟——stm32
  14. 给初学者:用VB写外挂 ———— 实战四:雷电3修改器
  15. ELK--- ELK简介
  16. 事件营销让面包圈有关注 但产品好才是真的好
  17. Go_Channel详解
  18. 电路邱关源学习笔记——2.5电压源、电流源的串联和并联
  19. NBTSCAN的使用,查找arp病毒工具。
  20. 量化交易,关于止损止盈的一点思考

热门文章

  1. 05.Shell字符串处理
  2. 版本控制器-git的安装
  3. 【前端三剑客】JavaScript 网页脚本语言(AJAX)
  4. 刚毕业的大学习,去大数据机构培训,工作好找吗?
  5. pyhon3模拟登录百度(2)—— 使用IE11理清百度登录内部逻辑和分析请求发送数据
  6. support package
  7. flutter中compute和isolate
  8. 新浪微博开发之授权用户登录的实现
  9. java h264 sps解码,H264 SPS解析
  10. 山西省内拍摄制作VR全景360照片720全景