博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ACM题目————滑雪
阅读量:5304 次
发布时间:2019-06-14

本文共 1368 字,大约阅读时间需要 4 分钟。

Description

Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个 区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子
1  2  3  4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。在上面的例子中,一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-3-2-1更长。事实上,这是最长的一条。

Input

输入的第一行表示区域的行数R和列数C(1 <= R,C <= 100)。下面是R行,每行有C个整数,代表高度h,0<=h<=10000。

Output

输出最长区域的长度。

Sample Input

5 51 2 3 4 516 17 18 19 615 24 25 20 714 23 22 21 813 12 11 10 9

Sample Output

25

dp加DFS。

//Asimple#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 100000using namespace std;const int maxn = 105;typedef long long ll ;int n, m;int a[maxn][maxn];int dp[maxn][maxn];int dx[]={ 0,0,1,-1}, dy[]={ 1,-1,0,0};bool worng(int x, int y){ //边界 return x < 0 || x >= n || y < 0 || y >= m ; }int getdp(int i, int j){ if( dp[i][j] > 1 ) return dp[i][j]; int Max = 1; for(int k=0; k<4; k++){ if( !worng(i+dx[k],j+dy[k]) && a[i][j] > a[i+dx[k]][j+dy[k]] ){ int h = getdp(i+dx[k],j+dy[k])+1; if( h > Max ){ Max = h ; } } } return Max;}int main(){ int sum; cin >> n >> m; for(int i=0; i
> a[i][j]; dp[i][j] = 1 ; } } int ans = 1 ; for(int i=0; i

 

转载于:https://www.cnblogs.com/Asimple/p/5715753.html

你可能感兴趣的文章
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
脚本删除文件下的文件
查看>>
实用拜占庭容错算法PBFT
查看>>
java b组 小计算器,简单计算器..
查看>>
java的二叉树树一层层输出,Java构造二叉树、树形结构先序遍历、中序遍历、后序遍历...
查看>>
php libevent 定时器,PHP 使用pcntl和libevent实现Timer功能
查看>>
php仿阿里巴巴,php实现的仿阿里巴巴实现同类产品翻页
查看>>
Node 中异常收集与监控
查看>>
七丶Python字典
查看>>
Excel-基本操作
查看>>
面对问题,如何去分析?(分析套路)
查看>>
Excel-逻辑函数
查看>>
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>