POJ 1661 Help Jimmy

博客详细介绍了如何帮助Jimmy在每个平台上选择从左侧或右侧跳下,使用动态规划方法(dp[i][0]和dp[i][1])来优化路径决策。
摘要由CSDN通过智能技术生成
题解:jimmy跳到下一个平台,总是从当前平台的最左侧或者最右侧跳下去的。dp[i][0]表示从i个平台左边跳下去,dp[i][1]表示从第i平台右边跳下去。
#include <iostream>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn = 1005;
#define inf 0x3f3f3f3f
int t,n,x,y,maxh;
int dp[maxn][2];
struct Node{
    int x1,x2,h;
}e[maxn];
bool cmp(Node t1,Node t2){
    return t1.h<t2.h;
}
void lefttime(int i){           //从平台左边跳下去的时间
    int k = i-1;
    while(k>0&&am
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值