博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdoj1428 -- 漫步校园 (记忆化搜索)
阅读量:6040 次
发布时间:2019-06-20

本文共 2261 字,大约阅读时间需要 7 分钟。

漫步校园

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 3744    Accepted Submission(s): 1133

Problem Description
LL 最近沉迷于AC不能自拔,每天寝室、机房两点一线。由于长时间坐在电脑边,缺乏运动。他决定充分利用每次从寝室到机房的时间,在校园里散散步。整个HDU 校园呈方形布局,可划分为n*n个小方格,代表各个区域。例如LL居住的18号宿舍位于校园的西北角,即方格(1,1)代表的地方,而机房所在的第三实验 楼处于东南端的(n,n)。因有多条路线可以选择,LL希望每次的散步路线都不一样。另外,他考虑从A区域到B区域仅当存在一条从B到机房的路线比任何一 条从A到机房的路线更近(否则可能永远都到不了机房了…)。现在他想知道的是,所有满足要求的路线一共有多少条。你能告诉他吗?
 

 

Input
每组测试数据的第一行为n(2=<n<=50),接下来的n行每行有n个数,代表经过每个区域所花的时间t(0<t<=50)(由于寝室与机房均在三楼,故起点与终点也得费时)。
 

 

Output
针对每组测试数据,输出总的路线数(小于2^63)。
 

 

Sample Input
3 1 2 3 1 2 3 1 2 3 3 1 1 1 1 1 1 1 1 1
 

 

Sample Output
1 6
 

 

Author
LL
 

 

Source
 

 

Recommend
linle   |   We have carefully selected several similar problems for you:          
#include 
#include
#include
const int MAX = 51;typedef long long LL ;using namespace std;int n;LL dp[MAX][MAX];int dis[MAX][MAX], G[MAX][MAX]; int ac[4][2]={
0, 1, 0, -1, -1, 0, 1, 0};struct Matrix{ int x, y;}s, t, r;void bfs(){ queue
q; s.x=n; s.y=n; dis[n][n]=G[n][n]; q.push(s); while(!q.empty()) { t=q.front(); q.pop(); for(int i=0; i<4; i++) { r.x=t.x+ac[i][0]; r.y=t.y+ac[i][1]; if(r.x<1 || r.x>n || r.y<1 || r.y>n) continue; if(dis[r.x][r.y]>dis[t.x][t.y]+G[r.x][r.y] || dis[r.x][r.y]==-1) { dis[r.x][r.y]=dis[t.x][t.y]+G[r.x][r.y]; q.push(r); } } } }LL dfs(int x, int y){ if(dp[x][y]) return dp[x][y]; if(x==n && y==n) return 1; dp[x][y]= 0; for(int i=0; i<4; i++) { int xx= x+ac[i][0]; int yy= y+ac[i][1]; if(xx> n|| yy>n|| xx <1|| yy < 1|| dis[xx][yy]>=dis[x][y]) continue; dp[x][y]+=dfs(xx, yy); } return dp[x][y]; } int main(){ while(scanf("%d", &n) != EOF) { memset(dis, -1, sizeof(dis)); memset(dp, 0, sizeof(dp)); for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) scanf("%d", &G[i][j]); bfs(); printf("%lld\n", dfs(1, 1)); } return 0;}

 

 

转载于:https://www.cnblogs.com/soTired/p/5348256.html

你可能感兴趣的文章
Android插值器、动画、分解详解,实现View摆动效果
查看>>
linux之浅谈weblogic安装
查看>>
Linux文件系统
查看>>
查看客户端是否能获取到域策略
查看>>
PowerBuilder:用DataStore导出Excel
查看>>
Mysql 数据库备份与还原
查看>>
MySQL数据库MyISAM和InnoDB存储引擎的比较
查看>>
值得医药B2C电商重视的7点
查看>>
spring mvc 日期类型的装换(yyyy-MM-dd HH:mm:ss)
查看>>
apache httpd-2.4.18 安装教程
查看>>
python中的集合
查看>>
我的友情链接
查看>>
并查集1——查找亲戚关系
查看>>
冬日韶关南雄游
查看>>
Redis 3.0 集群特性实验过程
查看>>
熟悉rhel6的系统关闭图形下不必要的服务
查看>>
excel表格操作小技巧
查看>>
MAC修改工具(WiFi上网工具) 绿色版
查看>>
使用email-ext替换Jenkins(Hudson)的默认邮件通知
查看>>
Red Hat Enterprise Linux ISO 全镜像下载
查看>>