【Atcoder Dp A Frog1】

这是一道Atcoder上的问题,题目描述了一只青蛙从1号石头开始,每次可以跳一步或两步,跳跃的代价是当前石头与前一个石头之间的差值。目标是找到青蛙到达n号石头的最小代价。动态规划解决方案通过dp[i]表示青蛙到达i号石头的最小代价,公式为dp[i] = min(dp[i-1]+abs(arr[i]-arr[i-1]), dp[i-2]+abs(arr[i]-arr[i-2]))。" 104393263,9329866,DELL XPS 8930-R 安装CentOS7服务器全攻略,"['Linux发行版', '服务器部署', '系统安装', '硬件兼容性', '网络配置']
摘要由CSDN通过智能技术生成

AtcA
题意 青蛙在1石头上 每次只能跳一步或者跳两步 代价为跳到的石头和跳之前的石头差
问青蛙到n石头最少要花多少代价
设青蛙到 i 个石头的代价为 dp[i]
那么dp[i] = min(dp[i-1]+abs(arr[i]-arr[i-1]),dp[i-2]+abs(arr[i]-arr[i-2]);

/*
    if you can't see the repay
    Why not just work step by step
    rubbish is relaxed
    to ljq
*/
#include <cstdio>
#include <cstring>
#include <iostream>
#include <queue>
#include <cmath>
#include <map>
#include <stack>
#include <set>
#include <sstream>
#include <vector>
#include <stdlib.h>
#include <algorithm>
using namespace std;

#define dbg(x) cout<<#x<<" = "<< (x)<< endl
#define dbg2(x1,x2) cout<<#x1<<" = "<<x1<<" "<<#x2<<" = "<<x2<<endl
#define dbg3(x1,x2,x3) cout<<#x1<<" = "<<x1<<" "<<#x2<<" = "<<x2<<" "<<#x3<<" = "<<x3<<endl
#define max3(a,b,c) max(a,max(b,c))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值