ホームページ > ウェブフロントエンド > htmlチュートリアル > Codeforces ラウンド #220 (ディビジョン 2) 質問 C: Inna と Dima (メモリ検索 + DP)_html/css_WEB-ITnose

Codeforces ラウンド #220 (ディビジョン 2) 質問 C: Inna と Dima (メモリ検索 + DP)_html/css_WEB-ITnose

WBOY
リリース: 2016-06-24 11:55:15
オリジナル
1236 人が閲覧しました

質問アドレス: http://codeforces.com/problemset/problem/374/C

dp[i][j] を使用して、行 i と列 j の数値が移動できる最大距離を表します。 -1 の場合は歩いていないことを意味し、歩いたがまだ終わっていないものは一時的に INF としてマークされます。このように、サイクルがあればINFを返します。次にdfsで検索します。

コードは次のとおりです:

#include <iostream>#include <cstdio>#include <string>#include <cstring>#include <stdlib.h>#include <math.h>#include <ctype.h>#include <queue>#include <map>#include <set>#include <algorithm>using namespace std;#define LL __int64const int INF=0x3f3f3f3f;char mp[1001][1001], str[]="DIMA";int dp[1001][1001];int jx[]={0,0,1,-1};int jy[]={1,-1,0,0};int n, m;int dfs(int x, int y, int tmp){    if(dp[x][y]!=-1) return dp[x][y];    dp[x][y]=INF;    int i, a, b, t=0;    tmp=(1+tmp)%4;    for(i=0;i<4;i++)    {        a=x+jx[i];        b=y+jy[i];        if(a>=0&&a<n&&b>=0&&b<m&&mp[a][b]==str[tmp])        {            t=max(t,dfs(a,b,tmp));        }    }    dp[x][y]=++t;    return t;}int main(){    int i, j, max1=0;    scanf("%d%d",&n,&m);    for(i=0;i<n;i++)    {        scanf("%s",mp[i]);    }    memset(dp,-1,sizeof(dp));    for(i=0;i<n;i++)    {        for(j=0;j<m;j++)        {            if(mp[i][j]=='D')            {                max1=max(max1,dfs(i,j,0));            }        }    }    if(max1/4==0)    {        puts("Poor Dima!");    }    else if(max1>=INF)    {        puts("Poor Inna!");    }    else        printf("%d\n",max1/4);    return 0;}
ログイン後にコピー


ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート