262144 (game)

 262144 (game)

题目描述

 

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 game she is playing. The game starts with a sequence of N positive integers (2≤N≤262,144), 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!


solution

令f[i][j]表示以j为左端点,合并出i时的右端点

f[i][j]=f[i-1][f[i-1][j]]

i最大只有18

难度在于怎么能想到这个状态

原文地址:https://www.cnblogs.com/liankewei/p/10358772.html