码迷,mamicode.com
首页 > 其他好文 > 详细

Chopsticks Hdu1500

时间:2014-06-12 14:33:30      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   http   color   com   

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1500

从大到小搞,到第 i 个人取的对数 不超过 i/3,就保证了对于每一对之前总有比他大的 与他配对。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#include <string>
#include <iostream>
using namespace std;
const int INF=0xfffffff;
int Min(int a,int b)
{
    return a>b? b:a;
}
int a[5555],dp[5555][1111];
int main()
{
    int acase,n,k;
    scanf("%d",&acase);
    while(acase--){
        scanf("%d%d",&k,&n);k+=8;
        for(int i=n;i>0;i--)
            scanf("%d",&a[i]);
        for(int i=0;i<=n;i++)
            for(int j=0;j<=k;j++)
            dp[i][j]=INF;
        for(int i=0;i<=n;i++)
            dp[i][0]=0;
        for(int i=1;i<=n;i++)
        for(int j=1;j<=i/3;j++){
            dp[i][j]=Min(dp[i-1][j],dp[i-2][j-1]+(a[i]-a[i-1])*(a[i]-a[i-1]));
        }
        printf("%d\n",dp[n][k]);
    }
    return 0;
}

  

Chopsticks Hdu1500,布布扣,bubuko.com

Chopsticks Hdu1500

标签:class   blog   code   http   color   com   

原文地址:http://www.cnblogs.com/yigexigua/p/3782071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!