日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

洛谷 P3146 [USACO16OPEN]248

發布時間:2023/12/2 编程问答 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 洛谷 P3146 [USACO16OPEN]248 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

P3146 [USACO16OPEN]248

題目描述

Bessie likes downloading games to play on her cell phone, even though she doesfind 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?NN?positive integers (2 \leq N\leq 2482N248), each in the range?1 \ldots 40140. In one move, Bessie cantake two adjacent numbers with equal values and replace them a singlenumber of value one greater (e.g., she might replace two adjacent 7swith an 8). The goal is to maximize the value of the largest numberpresent in the sequence at the end of the game. Please help Bessiescore as highly as possible!

給定一個1*n的地圖,在里面玩2048,每次可以合并相鄰兩個,問最大能合出多少

輸入輸出格式

輸入格式:

?

The first line of input contains?NN, and the next?NN?lines give the sequence

of?NN?numbers at the start of the game.

?

輸出格式:

?

Please output the largest integer Bessie can generate.

?

輸入輸出樣例

輸入樣例#1:
4 1 1 1 2 輸出樣例#1:
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.

思路:區間DP。f[i][j]表示區間i-j之間的最大值。

吐槽:加強版戳這里

#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define MAXN 300 using namespace std; int n,ans; int f[MAXN][MAXN]; int main(){scanf("%d",&n);for(int i=1;i<=n;i++){scanf("%d",&f[i][i]);ans=max(ans,f[i][i]);}for(int i=n-1;i>=1;i--)for(int j=i+1;j<=n;j++){for(int k=i;k<j;k++)if(f[i][k]==f[k+1][j])f[i][j]=max(f[i][j],f[i][k]+1);ans=max(ans,f[i][j]);}cout<<ans; }

?

轉載于:https://www.cnblogs.com/cangT-Tlan/p/7603797.html

總結

以上是生活随笔為你收集整理的洛谷 P3146 [USACO16OPEN]248的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。