hdu FatMouse and Cheese(dp)

來源:互聯網
上載者:User

 

很好的一道題。先排序再dp,再開個標記數組。

 

#include #include #include using namespace std;const int INF = 0x3f3f3f3f;int dp[110][110],map[110][110];int vis[110][110];struct node{    int x,y;    int data;    bool operator < (const struct node &tmp)const    {        return data < tmp.data;    }}point[10010];int main(){    int n,k;    while(~scanf(%d %d,&n,&k))    {        if(n == -1 && k == -1) break;        int cnt = 0;        for(int i = 1; i <= n; i++)        {            for(int j = 1;j <= n; j++)            {                scanf(%d,&map[i][j]);                point[++cnt] = (struct node){i,j,map[i][j]};            }        }        sort(point+1,point+1+cnt);        memset(vis,0,sizeof(vis));        memset(dp,0,sizeof(dp));        int x,y,ans,res;        dp[1][1] = map[1][1];        res = dp[1][1];        for(int i = 1; i <= cnt; i++)        {            x = point[i].x;            y = point[i].y;            ans = -1;            for(int j = 1; j <= k; j++)            {                if(x-j>=1 && map[x-j][y] < map[x][y] && !vis[x-j][y])                    ans = max(dp[x-j][y],ans);                if(x+j <= n && map[x+j][y] < map[x][y] && !vis[x+j][y])                    ans = max(dp[x+j][y],ans);                if(y-j >= 1 && map[x][y-j] < map[x][y] && !vis[x][y-j])                    ans = max(dp[x][y-j],ans);                if(y+j <= n && map[x][y+j] < map[x][y] && !vis[x][y+j])                    ans = max(dp[x][y+j],ans);            }            if(ans == -1)            {                if(x == 1 && y == 1)                    continue;                else                {                    vis[x][y] = 1;                    dp[x][y] = 0;                    continue;                }            }            dp[x][y] = map[x][y]+ans;            res = max(res,dp[x][y]);        }        printf(%d,res);    }    return 0;}


 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.