HDU 1078 FatMouse and Cheese

来源:互联网 发布:四川联通大数据 编辑:程序博客网 时间:2024/06/05 07:28

FatMouse and Cheese

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 37   Accepted Submission(s) : 26

Font: Times New Roman | Verdana | Georgia

Font Size:  

Problem Description

FatMouse has stored some cheese in a city. The city can be considered as a square grid of dimension n: each grid location is labelled (p,q) where 0 <= p < n and 0 <= q < n. At each grid location Fatmouse has hid between 0 and 100 blocks of cheese in a hole. Now he's going to enjoy his favorite food.

FatMouse begins by standing at location (0,0). He eats up the cheese where he stands and then runs either horizontally or vertically to another location. The problem is that there is a super Cat named Top Killer sitting near his hole, so each time he can run at most k locations to get into the hole before being caught by Top Killer. What is worse -- after eating up the cheese at one location, FatMouse gets fatter. So in order to gain enough energy for his next run, he has to run to a location which have more blocks of cheese than those that were at the current hole.

Given n, k, and the number of blocks of cheese at each grid location, compute the maximum amount of cheese FatMouse can eat before being unable to move. 

Input

There are several test cases. Each test case consists of 

a line containing two integers between 1 and 100: n and k 
n lines, each with n numbers: the first line contains the number of blocks of cheese at locations (0,0) (0,1) ... (0,n-1); the next line contains the number of blocks of cheese at locations (1,0), (1,1), ... (1,n-1), and so on. 
The input ends with a pair of -1's. 

Output

For each test case output in a line the single integer giving the number of blocks of cheese collected. 

Sample Input

3 11 2 510 11 612 12 7-1 -1

Sample Output

37

Source

Zhejiang University Training Contest 2001

<pre name="code" class="cpp">#include<iostream>#include<stdio.h>#include<cmath>#include<string.h>#include<string>#include<queue>#include<stack>using namespace std;const int M=110;int i,j,k,n,m;int point[M][M];int flag[M][M];int dir[4][2]={-1,0,1,0,0,1,0,-1};void dfs(int x,int y)      //regard as recursion is easy to understanding{    int m=0;    if(flag[x][y])return;    for(int i=0;i<4;i++)        for(int j=1;j<=k;j++)    {        int xx=x+dir[i][0]*j;        int yy=y+dir[i][1]*j;        if(xx>=0&&yy>=0&&xx<n&&yy<n&&point[xx][yy]>point[x][y])        {           dfs(xx,yy);           if(flag[xx][yy]>m)            m=flag[xx][yy];        }    }    flag[x][y]=m+point[x][y];}int main(){    while(cin>>n>>k)    {        if(n==-1&&k==-1)break;        for(i=0;i<n;i++)            for(j=0;j<n;j++)          cin>>point[i][j];          memset(flag,0,sizeof(flag));          dfs(0,0);          cout<<flag[0][0]<<endl;    }    return 0;}



0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 玩王者荣耀闪屏怎么办 王者荣耀太卡了怎么办 想卖王者号qq怎么办 小米4电视发热严重怎么办 三星玩王者荣耀卡怎么办 华为麦芒5网络差怎么办 华为麦芒无线信号不好怎么办 华为麦芒6网络不好怎么办 华为麦芒6信号差怎么办 华为手机无线网信号差怎么办 华为麦芒6数据信号差怎么办 华为麦芒54g信号差怎么办 华为手机wifi信号差怎么办 华为手机导航信号弱怎么办 华为手机gps信号弱怎么办 麦芒5指纹消失了怎么办 华为应用锁密码忘了怎么办 华为麦芒5密码忘了怎么办 华为卡1无服务怎么办 经常卡1无服务怎么办 华为手机进水无服务怎么办 苹果手机进水后无服务怎么办 苹果6进水无服务怎么办 华为手机突然无服务怎么办 sim卡显示无服务怎么办 华为麦芒进水无限开关机怎么办 华为麦芒5进水黑屏怎么办 华为麦芒6进水了怎么办 4g手机开不开机怎么办 全屏钢化膜总是翘边怎么办 华为麦芒屏幕触屏失灵怎么办 华为麦芒5运行慢怎么办 手机屏保密码忘记了怎么办 麦芒5密码锁忘了怎么办 超薄手机壳松了怎么办 华为麦芒5声音小怎么办 笔记本外壳a面裂了怎么办 苹果手机外壳摔坏了怎么办 挂衣服肩膀出包怎么办 摩拜单车手机号注销了怎么办 摩拜单车手机号码换了怎么办