码迷,mamicode.com
首页 > 其他好文 > 详细

P1535

时间:2020-06-02 13:26:14      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:problem   sync   lan   表示   ++   mat   with   href   sizeof   

P1535

P1535

记忆化搜索

\(dp[i][j][t]\) 表示从 \(i,j\) 开始走还剩下 \(t\) 秒时方案数

那么开始时就是 \(dfs(stx,sty,t)\)

到达 \(edx,edy,0\) 时算一种路线

那么整个的结构就很清晰了:

    if(judge(x + 1,y)) ans += dfs(x + 1,y,t - 1);
    if(judge(x - 1,y)) ans += dfs(x - 1,y,t - 1);
    if(judge(x,y + 1)) ans += dfs(x,y + 1,t - 1);
    if(judge(x,y - 1)) ans += dfs(x,y - 1,t - 1);

最终的答案是: \(dp[stx][sty][t]\)

int n,m,t;
int dp[N][N][20];
char s[N][N];
int stx,sty,edx,edy;
bool judge(int x,int y)
{
    if(x >= 1 && x <= n && y >= 1 && y <= m && s[x][y] == ‘.‘) return true;
    else return false;
}
int dfs(int x,int y,int t)
{
    if(dp[x][y][t] != -1) return dp[x][y][t];
    if(t < 0) return 0;
    if(x == edx && y == edy && t == 0) return 1;
    int ans = 0;
    if(judge(x + 1,y)) ans += dfs(x + 1,y,t - 1);
    if(judge(x - 1,y)) ans += dfs(x - 1,y,t - 1);
    if(judge(x,y + 1)) ans += dfs(x,y + 1,t - 1);
    if(judge(x,y - 1)) ans += dfs(x,y - 1,t - 1);
    return (dp[x][y][t] = ans); 
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> n >> m >> t;
    memset(dp,-1,sizeof dp);
    for(int i =1;i <= n;i++)
    {
        for(int j =1;j <= m;j++)
            cin >> s[i][j];
    }
    cin >> stx >> sty >> edx >> edy;
    cout << dfs(stx,sty,t) << endl;
    return 0;
}

P1535

标签:problem   sync   lan   表示   ++   mat   with   href   sizeof   

原文地址:https://www.cnblogs.com/strategist-614/p/13030541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!