poj 1088 滑雪

题意:找出最长的递增道路,能够上下左右四个方向走spa DP方程:step[ i ][ j ] = max{ step[ i-1][ j ],  step[ i ][ j-1],  step[ i+1][ j ],  step[ i ][ j+1] };code #include<stdio.h> int mp[101][101];//记录原始数据 int step[101][101];//记录每
相关文章
相关标签/搜索