【求助】80分dfs

P1434 [SHOI2002] 滑雪

VincentXu @ 2020-10-01 21:28:53

第二个点TLE,第四个点WA

#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
int r,c,ans;
bool vis[101][101];
int a[101][101],f[101][101];
int move[4][2]={{-1,0},{1,0},{0,-1},{0,1}};
void dfs(int x,int y)
{
    for(int i=0;i<4;i++)
    {
        int xx=x+move[i][0],yy=y+move[i][1];
        if(xx>=1&&xx<=r&&yy>=1&&yy<=c&&a[xx][yy]<a[x][y])
        {
            f[xx][yy]=max(f[xx][yy],f[x][y]+1);
            dfs(xx,yy);
        }
        ans=max(ans,f[xx][yy]);
    }
    return;
}
int main()
{
    cin>>r>>c;
    for(int i=1;i<=r;i++)
    for(int j=1;j<=c;j++)
    {
        scanf("%d",&a[i][j]);
        f[i][j]=1;
    }
    for(int i=1;i<=r;i++)
    for(int j=1;j<=c;j++)
    dfs(i,j);
    cout<<ans;
    return 0;
}

救救我吧我太弱了


by VincentXu @ 2020-10-01 21:34:07

现在只有第二个点TLE了

真玄学


by sunxiaohan @ 2020-10-01 21:40:06

记忆化


by BlueSu @ 2020-10-01 21:48:26

@VincentXu 看一下第一篇题解,学一下记忆化搜索

爆搜过不了


by VincentXu @ 2020-10-02 12:25:56

@BlueSu 已解决,谢谢dalao %%%


|