计蒜客-跳跃游戏二 (简单dp)

题目链接:https://nanti.jisuanke.com/t/20

 

                                                         跳跃游戏二

给定一个非负整数数组,假定你的初始位置为数组第一个下标。数组中的每个元素代表你在那个位置能够跳跃的最大长度。你的目标是到达最后一个下标,并且使用最少的跳跃次数。

例如:

A = [2,3,1,1,4],到达最后一个下标的最少跳跃次数为 2。(先跳跃 1 步,从下标 0 到 1,然后跳跃 3 步,到达最后一个下标。一共两次)

输入格式

第一行输入一个正整数 n(1≤n≤100) ,接下来的一行,输入 n 个整数,表示数组 A。

输出格式

最后输出最少的跳跃次数。

样例输入

5
3 1 1 1 1

样例输出

2

解题分析:简单dp题,适合新手练习,开一个dp数组用来保存到第i个数的最少跳跃步数即可,然后模拟跳跃的过程即可写出状态转移方程。
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
#define INF 0x3f3f3f3f

int main()
{
    int n,i,j;
    while(cin>>n)
    {
        int a[110];
        for(i=0;i<n;i++)cin>>a[i];
        int dp[110];memset(dp,INF,sizeof(dp));        //因为要求dp[i]的最小值,所以先将dp数组初始化为一个很大的数
        dp[0]=0;
        for(i=0;i<n;i++)            //用两个循环来模拟跳跃过程
        {
            for(j=1;j<=a[i];j++)
            {
                if(i+j>=n)break;
                dp[i+j]=min(dp[i+j],dp[i]+1);
            }
        }
        cout<<dp[n-1]<<endl;
    }
    return 0;
}
2018-05-14

原文地址:https://www.cnblogs.com/00isok/p/9035080.html

时间: 2024-11-05 18:39:02

计蒜客-跳跃游戏二 (简单dp)的相关文章

计蒜客 跳跃游戏二(动态规划)

给定一个非负整数数组,假定你的初始位置为数组第一个下标. 数组中的每个元素代表你在那个位置能够跳跃的最大长度. 你的目标是到达最后一个下标,并且使用最少的跳跃次数. 例如: A = [2,3,1,1,4], 到达最后一个下标的最少跳跃次数为2.(先跳跃1步,从下标0到1,然后跳跃3步,到达最后一个下标.一共两次) 格式: 第一行输入一个正整数n,接下来的一行,输入数组A[n]. 最后输出最少的跳跃次数. 样例1 输入: 5 3 1 1 1 1 输出: 2 #include <stdio.h>

计蒜客 跳跃游戏

跳跃游戏 给定一个非负整数数组,假定你的初始位置为数组第一个下标. 数组中的每个元素代表你在那个位置能够跳跃的最大长度. 请确认你是否能够跳跃到数组的最后一个下标. 例如: A = [2,3,1,1,4], return true. A = [3,2,1,0,4], return false. 格式: 第一行输入一个正整数n,接下来的一行,输入数组A[n].如果能跳到最后一个下标,输出“true”,否则输出“false” 样例输入 5 2 0 2 0 1 样例输出 true 1 #include

计蒜客 跳跃游戏(贪心)

给定一个非负整数数组,假定你的初始位置为数组第一个下标.数组中的每个元素代表你在那个位置能够跳跃的最大长度. 请确认你是否能够跳跃到数组的最后一个下标. 例如: A = [2,3,1,1,4], return ture A = [3,2,1,0,4], return false. 格式: 第一行输入一个正整数n,接下来的一行,输入数组A[n].如果能跳到最后一个下标,输出"true",否则输出"false" 样例1 ????输入:???? ????????5 ???

计蒜客 跳跃游戏2

给定一个非负整数数组,假定你的初始位置为数组第一个下标. 数组中的每个元素代表你在那个位置能够跳跃的最大长度. 你的目标是到达最后一个下标,并且使用最少的跳跃次数. 例如: A = [2,3,1,1,4], 到达最后一个下标的最少跳跃次数为2.(先跳跃1步,从下标0到1,然后跳跃3步,到达最后一个下标.一共两次) 格式: 第一行输入一个正整数n,接下来的一行,输入数组A[n]. 最后输出最少的跳跃次数. 样例输入 5 3 1 1 1 1 样例输出 2 #include <stdio.h>int

计蒜客- AC Challenge 状压dp

题目链接:https://nanti.jisuanke.com/t/30994 Dlsj is competing in a contest with n(0<n≤20)n (0 < n \le 20)n(0<n≤20) problems. And he knows the answer of all of these problems. However, he can submit iii-th problem if and only if he has submitted (and

计蒜客 Red Black Tree(树形DP)

You are given a rooted tree with n nodes. The nodes are numbered 1..n. The root is node 1, and m of the nodes are colored red, the rest are black. You would like to choose a subset of nodes such that there is no node in your subset which is an ancest

计蒜客 31452 - Supreme Number - [简单数学][2018ICPC沈阳网络预赛K题]

题目链接:https://nanti.jisuanke.com/t/31452 A prime number (or a prime) is a natural number greater than $1$ that cannot be formed by multiplying two smaller natural numbers. Now lets define a number $N$ as the supreme number if and only if each number m

计蒜客 Flashing Fluorescents(状压DP)

You have nn lights, each with its own button, in a line. Pressing a light’s button will toggle that light’s state; if the light is on, it will turn off, and if the light is off, it will turn on. The lights change at 1 second timesteps. You can press

简单斐波那契——计蒜客(4)

题目来自“计蒜客”第4题. 解算法题之前,务必先写出与之对应的数学表达式,用于描述算法. 数学描述如图: 根据“数学描述“,写出代码如下: #include <stdio.h> int main() { int N =0 ; scanf("%d", &N); int i, fn1 = 1, fn2 = 0, fn; switch(N) { case 0: printf("0"); break; case 1: printf("1&quo