热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

bzoj4580:[Usaco2016Open]248(dp)

4580:[Usaco2016Open]248TimeLimit:10SecMemoryLimit:128MBSubmit:99

4580: [Usaco2016 Open]248

Time Limit: 10 Sec   Memory Limit: 128 MB
Submit: 99   Solved: 78
[ Submit][ Status][ Discuss]

Description

Bessie likes downloading games to play on her cell phone, even though she does find the small touch 
screen rather cumbersome to use with her large hooves.She is particularly intrigued by the current g
ame she is playing. The game starts with a sequence of NN positive integers (2≤N≤248), each in the
 range 1…40. In one move, Bessie can take two adjacent numbers with equal values and replace them a
 single number of value one greater (e.g., she might replace two adjacent 7s with an 8). The goal is
 to maximize the value of the largest number present in the sequence at the end of the game. Please 
help Bessie score as highly as possible!

Input

The first line of input contains N, and the next N lines give the sequence of N numbers at the start
 of the game.

Output

Please output the largest integer Bessie can generate.

Sample Input

4
1
1
1
2

Sample Output

3
//In this example shown here, Bessie first merges the second and third 1s to obtain the sequence 1 2 2
, and then she merges the 2s into a 3. Note that it is not optimal to join the first two 1s.

HINT

Source

Gold

[ Submit][ Status][ Discuss]


题解:dp

f[i][j][k]表示区间[i,j]变成k是否可行,然后每次得到一个新的数就更新答案。理论复杂度不是很科学,但是有很多的不合法状态可以舍去。

其实可以变成二维的转移,f[i][j]表示区间[i,j]合并成一个数的最大值。那么这样会不会有一个值不这么合并的时候更优呢?因为是枚举长度和区间,所以那样一定是某种状态下的最优值,一定会更新进答案。

#include
#include
#include
#include
#include
#define N 300
using namespace std;
int a[N],f[N][N][N],n;
int main()
{
	freopen("248.in","r",stdin);
	freopen("248.out","w",stdout);
	scanf("%d",&n); int ans=0; int minn=40;
	for (int i=1;i<=n;i++) scanf("%d",&a[i]),ans=max(ans,a[i]),minn=min(minn,a[i]);
	memset(f,0,sizeof(f));
	for (int i=1;i<=n;i++) f[i][i][a[i]]=1;
	for (int len=2;len<=n;len++)
	 for (int i=1;i<=n;i++) {
	 	int pos=i+len-1;
	 	if (pos>n) break;
	 	int t=ans;
	 	for (int col=minn;col<=t;col++)
	 	{
	 	 for (int k=i;k 
 



推荐阅读
  • 本文深入探讨了HTML5中十五个重要的新特性,为开发者提供了详细的指南。 ... [详细]
  • 3144:[Hnoi2013]切糕TimeLimit:10SecMemoryLimit:128MBSubmit:1261Solved:700[Submit][St ... [详细]
  • HDU1085 捕获本·拉登!
    问题描述众所周知,本·拉登是一位臭名昭著的恐怖分子,他已失踪多年。但最近有报道称,他藏匿在中国杭州!虽然他躲在杭州的一个洞穴中不敢外出,但近年来他因无聊而沉迷于数学问题,并声称如果有人能解出他的题目,他就自首。 ... [详细]
  • 本文详细介绍了如何将After Effects中的动画相机数据导入到Vizrt系统中,提供了一种有效的解决方案,适用于需要在广播级图形制作中使用AE动画的专业人士。 ... [详细]
  • 本文基于《Core Java Volume 2》的内容,深入探讨了网络编程中通过POST方法提交表单数据的技术细节,包括GET与POST方法的区别、POST提交的具体步骤及常见问题处理。 ... [详细]
  • 近期在研究Java IO流技术时,遇到了一个关于如何正确读取Doc文档而不出现乱码的问题。本文将详细介绍使用Apache POI库处理Doc和Docx文件的具体方法,包括必要的库引入和示例代码。 ... [详细]
  • A1166 峰会区域安排问题(25分)PAT甲级 C++满分解析【图论】
    峰会是指国家元首或政府首脑之间的会议。合理安排峰会的休息区是一项复杂的工作,理想的情况是邀请的每位领导人都是彼此的直接朋友。 ... [详细]
  • 2022年4月15日的算法练习题,包括最长公共子序列和线段树的应用。 ... [详细]
  • VMware 15.5.7 中文版激活方法
    本文提供了一种有效的方法来激活 VMware 15.5.7 的中文版本,同时介绍了如何利用最新的激活码进行操作,确保用户能够顺利使用。 ... [详细]
  • 本文介绍了JSP的基本概念、常用标签及其功能,并通过示例详细说明了如何在JSP页面中使用Java代码。 ... [详细]
  • 本文详细介绍了PHP中的回调函数及其多种实现方式,包括函数字符串、匿名函数、类静态方法和类方法。同时,探讨了闭包的概念及其在PHP中的应用,通过实例展示了如何利用闭包访问外部变量。 ... [详细]
  • 第七章 边沿检测技术的重要性与实践
    本文探讨了边沿检测技术在FPGA设计中的重要性及其实际应用案例。通过个人经历和具体实例,详细解析了边沿检测的原理、实现方法及其优化策略。 ... [详细]
  • BL550721、特点液晶驱动输出:Common输出4线,Segment输出36线内置显示寄存器364144bit2线串行接口(SCL,SDA)内置震荡电路内置液晶驱动电源电路13 ... [详细]
  • 1.打印日历打印日历判断是否是闰年#include<stdio.h>inta[]{0,31,28,31,30,31,30,31,31 ... [详细]
  • 题目描述:在Berland有一位著名的占星师、魔术师和骗子——Cheaterius。他最近发明了一种能带来好运和财富的魔法符——Cheaterius符。这些符由Cheaterius亲自制作,其制作技术严格保密。每晚,Cheaterius都会将多米诺骨牌用强力胶粘合,制成2x2的正方形,即Cheaterius的魔法符。 ... [详细]
author-avatar
小啊小刺猬0801_302
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有