zoukankan      html  css  js  c++  java
  • POJ 2181 Jumping Cows

    Jumping Cows
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 6398   Accepted: 3828

    Description

    Farmer John's cows would like to jump over the moon, just like the cows in their favorite nursery rhyme. Unfortunately, cows can not jump. 

    The local witch doctor has mixed up P (1 <= P <= 150,000) potions to aid the cows in their quest to jump. These potions must be administered exactly in the order they were created, though some may be skipped. 

    Each potion has a 'strength' (1 <= strength <= 500) that enhances the cows' jumping ability. Taking a potion during an odd time step increases the cows' jump; taking a potion during an even time step decreases the jump. Before taking any potions the cows' jumping ability is, of course, 0. 

    No potion can be taken twice, and once the cow has begun taking potions, one potion must be taken during each time step, starting at time 1. One or more potions may be skipped in each turn. 

    Determine which potions to take to get the highest jump.

    Input

    * Line 1: A single integer, P 

    * Lines 2..P+1: Each line contains a single integer that is the strength of a potion. Line 2 gives the strength of the first potion; line 3 gives the strength of the second potion; and so on. 

    Output

    * Line 1: A single integer that is the maximum possible jump. 

    Sample Input

    8
    7
    2
    1
    8
    4
    3
    5
    6
    

    Sample Output

    17
    题目大意:从一列数字中按照编号从小到大有选择的取数,若取到的数字的为第奇数个则加上该数,否则减去该数,问取到的数的最大总和。
    解题方法:动态规划,dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + num[i])表示当前取的是第奇数个,dp[i][1] = max(dp[i - 1][1], dp[i - 1][0] - num[i])表示当前取的是第偶数个。
    #include <stdio.h>
    #include <iostream>
    #include <string.h>
    using namespace std;
    
    int num[150010];
    int dp[150010][2];
    
    int main()
    {
        int n;
        scanf("%d", &n);
        for (int i = 1; i <= n; i++)
        {
            scanf("%d", &num[i]);
        }
        for (int i = 1; i <= n; i++)
        {
            dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + num[i]);
            dp[i][1] = max(dp[i - 1][1], dp[i - 1][0] - num[i]);
        }
        printf("%d
    ", max(dp[n][0], dp[n][1]));
        return 0;
    }
  • 相关阅读:
    毕业3年在北京买房,他是怎么赚钱攒钱的?
    Windows Server 2008 如何在IIS中添加MIME类型
    IIS下无法访问.ini后缀文件
    新的一年,我们如何才能收获满满,不留太多遗憾呢?
    你百分之九十九的问题都是因为懒
    为什么你容许陌生人成功,却无法忍受身边人发达
    堆排序
    计数排序
    直接插入排序
    冒泡排序
  • 原文地址:https://www.cnblogs.com/lzmfywz/p/3231325.html
Copyright © 2011-2022 走看看