zoukankan      html  css  js  c++  java
  • [USACO16OPEN]262144

    题目描述

    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 NNpositive integers (2 leq Nleq 262,1442N262,144), each in the range 1 ldots 40140. In one move, Bessiecan take two adjacent numbers with equal values and replace them asingle number of value one greater (e.g., she might replace twoadjacent 7s with an 8). The goal is to maximize the value of thelargest number present in the sequence at the end of the game. Pleasehelp Bessie score as highly as possible!

    Bessie喜欢在手机上下游戏玩(……),然而她蹄子太大,很难在小小的手机屏幕上面操作。

    她被她最近玩的一款游戏迷住了,游戏一开始有n个正整数,(2<=n<=262144),范围在1-40。在一步中,贝西可以选相邻的两个相同的数,然后合并成一个比原来的大一的数(例如两个7合并成一个8),目标是使得最大的数最大,请帮助Bessie来求最大值。

    输入输出格式

    输入格式:

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

    of N 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.

    分析:

    本题用f[i][j]表示从j开始合并到i这个数字序列的末尾的下标是什么,然后进行状态转移即可。注意本题是区间DP。

    CODE:

     1 #include <cstdio>
     2 #include<iostream>
     3 using namespace std;
     4 int n,ans;
     5 int f[65][302144];
     6 int main(){
     7     cin>>n;
     8     for (int i=1;i<=n;++i){
     9         int x;
    10         cin>>x;
    11         f[x][i]=i+1;
    12     }
    13     for (int i=2;i<=60;i++){
    14         for (int j=1;j<=n;j++){
    15             if (!f[i][j]) f[i][j]=f[i-1][f[i-1][j]];
    16             if (f[i][j]) ans=i;
    17         }
    18     }
    19     cout<<ans<<endl;
    20     //system("pause");
    21     return 0;
    22 }
  • 相关阅读:
    特征选择(四)- 分散度
    机器学习实践中的7种常见错误
    逻辑回归 vs 决策树 vs 支持向量机(I)
    逻辑回归 vs 决策树 vs 支持向量机(II)
    线性回归和逻辑回归
    Mac 下 python 环境问题
    Linux目录/usr结构说明
    Python 处理 json
    感知机、logistic回归 损失函数对比探讨
    SVM探讨
  • 原文地址:https://www.cnblogs.com/kanchuang/p/11163159.html
Copyright © 2011-2022 走看看