程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVA 825 --Walking on the Safe Side+DP

UVA 825 --Walking on the Safe Side+DP

編輯:C++入門知識

UVA 825 --Walking on the Safe Side+DP


從一個點開始,如果始終只往右邊和下邊走,則如果能到達右下角距離必定是最小的,

且無論走那條路線距離都是一樣的。


代碼如下:


#include
#include
#include
using namespace std;

char str[100];
int G[1000][1000];
int dp[1000][1000];
int n,m;

void input()
{
    gets(str);
    sscanf(str,"%d %d",&n,&m);
    memset(G,0,sizeof(G));
    for(int ii=1;ii<=n;ii++)
    {
        gets(str);
        int len=strlen(str);
        int temp=0,i;
        for(i=0;i='0'&&str[i]<='9')
                temp=temp*10+str[i]-'0';
            else
                break;
        }
        int x=temp;
        temp=0;
        for(int j=i+1;j<=len;j++)
        {
            if(str[j]>='0'&&str[j]<='9')
            {
                temp=temp*10+str[j]-'0';
            }
            else if(str[i]==' '||j==len)
            {
                G[x][temp]=1;
                temp=0;
            }
        }
    }
}

int main()
{
    int t;
    gets(str);
    sscanf(str,"%d",&t);
    while(t--)
    {
        gets(str);
        input();
        memset(dp,0,sizeof(dp));
        dp[1][1]=1;
        for(int i=1;i<=n;i++)
            for(int j=1;j<=m;j++)
            {
                if(G[i][j]==1)
                    dp[i][j]=0;
                else
                    dp[i][j]+=dp[i-1][j]+dp[i][j-1];
            }
        printf("%d\n",dp[n][m]);
        if(t)
            printf("\n");
    }
  return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved