题解: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