FZU 2092 收集水晶 BFS记忆化搜索

用了两个pii代码有点长……

记忆化搜索主要还是用用dp数组去记录并更新状态

  1 #include<cstdio>
  2 #include<iostream>
  3 #include<algorithm>
  4 #include<cmath>
  5 #include<cstring>
  6 #include<string>
  7 #include<ctime>
  8 #include<map>
  9 #include<set>
 10 #include<vector>
 11 #include<queue>
 12 #include<cstdlib>
 13 #include<cassert>
 14 #include<sstream>
 15 #include<stack>
 16 #include<list>
 17 #include<bitset>
 18 #define cl(a,b) memset(a,b,sizeof(a))
 19 #define debug(x) cerr<<#x<<"=="<<(x)<<endl
 20 using namespace std;
 21 typedef long long ll;
 22 typedef long double ldb;
 23 typedef pair<int,int> pii;
 24
 25 const int inf=0x3f3f3f3f;
 26 const int maxn=12;
 27 const int mod=1e7+7;
 28 const double eps=1e-8;
 29 const double pi=acos(-1);
 30
 31 int dx[8]= {-1,0,1,0,0};
 32 int dy[8]= {0,1,0,-1,0};
 33
 34 int n,m,ans;
 35 bool mp[maxn][maxn];
 36 int value[maxn][maxn][205];
 37 int dp[maxn][maxn][maxn][maxn][205];
 38
 39 struct people
 40 {
 41     int time;
 42     pii x,y;
 43 };
 44
 45 bool check(people x)
 46 {
 47     if(x.x.first<1||x.x.first>n) return false;
 48     if(x.x.second<1||x.x.second>m) return false;
 49     if(x.y.first<1||x.y.first>n) return false;
 50     if(x.y.second<1||x.y.second>m) return false;
 51     if(!mp[x.x.first][x.x.second]) return false;
 52     if(!mp[x.y.first][x.y.second]) return false;
 53     return true;
 54 }
 55
 56 void init()
 57 {
 58     ans=0;
 59     cl(mp,0);
 60     cl(dp,-1);
 61     cl(value,0);
 62 }
 63
 64 void bfs()
 65 {
 66     queue<people>q;
 67     while(!q.empty()) q.pop();
 68     people st;
 69     st.x.first=1,st.x.second=1;
 70     st.y.first=1,st.y.second=1;
 71     st.time=0;
 72     dp[st.x.first][st.x.second][st.y.first][st.y.second][st.time]=0;
 73     q.push(st);
 74     while(!q.empty())
 75     {
 76         people tmp=q.front();
 77         q.pop();
 78         if(tmp.time>200) break;
 79         for(int i=0;i<5;i++)
 80         {//人和影子分别走
 81             for(int j=0;j<5;j++)
 82             {
 83                 people use;
 84                 use.x.first=tmp.x.first+dx[i];
 85                 use.x.second=tmp.x.second+dy[i];
 86                 use.y.first=tmp.y.first+dx[j];
 87                 use.y.second=tmp.y.second+dy[j];
 88                 use.time=tmp.time+1;
 89                 if(check(use))
 90                 {
 91                     int now=dp[tmp.x.first][tmp.x.second][tmp.y.first][tmp.y.second][tmp.time];
 92                     now+=value[use.x.first][use.x.second][use.time];
 93                     now+=value[use.y.first][use.y.second][use.time];
 94                     if(use.x.first==use.y.first&&use.x.second==use.y.second)
 95                         now-=value[use.x.first][use.x.second][use.time];
 96                     if(now>dp[use.x.first][use.x.second][use.y.first][use.y.second][use.time])
 97                     {
 98                         if(dp[use.x.first][use.x.second][use.y.first][use.y.second][use.time]==-1)
 99                         {//判断是否更新过
100                             q.push(use);
101                         }
102                         dp[use.x.first][use.x.second][use.y.first][use.y.second][use.time]=now;
103                         ans=max(now,ans);
104                     }
105                 }
106             }
107         }
108     }
109 }
110
111 int main()
112 {
113     int T;
114     scanf("%d",&T);
115     while(T--)
116     {
117         scanf("%d%d",&n,&m);
118         init();
119         char str[15];
120         for(int i=1;i<=n;i++)
121         {
122             scanf("%s",str);
123             for(int j=0;j<m;j++)
124             {
125                 if(str[j]==‘.‘) mp[i][j+1]=true;
126             }
127         }
128         int num;
129         scanf("%d",&num);
130         for(int i=0;i<num;i++)
131         {
132             int t,x,y,v;
133             scanf("%d%d%d%d",&t,&x,&y,&v);
134             value[x][y][t]+=v; //注意要+=而不是=
135         }
136         bfs();
137         printf("%d\n",ans);
138     }
139     return 0;
140 }
141
142 /*
143
144 1
145 3 3
146 ...
147 ..#
148 ...
149 3
150 2 3 1 3
151 2 2 2 2
152 2 1 3 1
153
154 */
时间: 2024-10-08 14:21:59

FZU 2092 收集水晶 BFS记忆化搜索的相关文章

FZU 2092 收集水晶 bfs+记忆化搜索 or 暴力

题目链接:收集水晶 一眼看过去,觉得是普通的bfs,初始位置有两个.仔细想了想...好像如果这样的话..........[不知道怎么说...T_T] dp[12][12][12][12][210] 中dp[x1][y1][x2][y2][t] =value 表示t时刻人和影子分别到x1,y1 和x2, y2位置的时候得到的最大价值是value. 然后呢,因为每个点的状态一定是由它相邻的状态确定的,所以由dp[0][0][0][0][0] = 0就可以得到所有的状态,中间记录最大值即为ans. 这

FZU 2092 bfs+记忆化搜索

晚上团队训练赛的题 和普通bfs不同的是 这是同时操纵人与影子两个单位进行的bfs 由于可能发生人和影子同时接触水晶 所以不可以分开操作 当时使用node记录人和影子的位置 然后进行两重for循环来分别改变位置 结果超内存 分析了一下应该是队列超了内存 毕竟如果每个点都存入的话一个点最多可以衍生出25个node 然后t最大为200s 一定会超 之间还发生了一些并不能理解的bug 被逼到最后重构才拿到了一个超内存 名次也不好 急需一个ac来赶上去 简直要烧起来了 侧面反映心理素质还是差一些 当时未

【BZOJ 1415】 1415: [Noi2005]聪聪和可可 (bfs+记忆化搜索+期望)

1415: [Noi2005]聪聪和可可 Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1640  Solved: 962 Description Input 数据的第1行为两个整数N和E,以空格分隔,分别表示森林中的景点数和连接相邻景点的路的条数. 第2行包含两个整数C和M,以空格分隔,分别表示初始时聪聪和可可所在的景点的编号. 接下来E行,每行两个整数,第i+2行的两个整数Ai和Bi表示景点Ai和景点Bi之间有一条路. 所有的路都是无向的,即

HDU 1428 漫步校园 (BFS + 记忆化搜索)

漫步校园 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3360    Accepted Submission(s): 1009 Problem Description LL最近沉迷于AC不能自拔,每天寝室.机房两点一线.由于长时间坐在电脑边,缺乏运动.他决定充分利用每次从寝室到机房的时间,在校园里散散步.整个HDU校园呈方形布局,可

csu 最优对称路径(bfs+记忆化搜索)

1106: 最优对称路径 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 371  Solved: 77[Submit][Status][Web Board] Description 给 一个n行n列的网格,每个格子里有一个1到9的数字.你需要从左上角走到右下角,其中每一步只能往上.下.左.右四个方向之一走到相邻格子,不能斜着走, 也不能走出网格,但可以重复经过一个格子.为了美观,你经过的路径还必须关于“左下-右上”这条对角线对称.下图是一个6x6网

[Swust OJ 409]--小鼠迷宫问题(BFS+记忆化搜索)

题目链接:http://acm.swust.edu.cn/problem/409/ Time limit(ms): 1000 Memory limit(kb): 65535 Description 小鼠a与小鼠b身处一个m×n的迷宫中,如图所示.每一个方格表示迷宫中的一个房间.这m×n个房间中有一些房间是封闭的,不允许任何人进入.在迷宫中任何位置均可沿上,下,左,右4个方向进入未封闭的房间.小鼠a位于迷宫的(p,q)方格中,它必须找出一条通向小鼠b所在的(r,s)方格的路.请帮助小鼠a找出所有通

[ACM] FZU 2092 收集水晶 (DFS,记忆化搜索)

Problem Description shadow来到一片神奇的土地,这片土地上不时会出现一些有价值的水晶,shadow想要收集一些水晶带回去,但是这项任务太繁杂了,于是shadow让自己的影子脱离自己并成为一个助手来帮助自己收集这些水晶. shadow把这片土地划分成n*m个小方格,某些格子会存在一些shadow和他的影子都无法穿越的障碍,比如巨石.树木.野兽等.shadow预先探测到了水晶出现的时间.位置以及它们的价值,但这些水晶的存在就如昙花一现般短暂,若在出现后1秒内没有收集到,它便将

Dfs/Bfs/记忆化搜索问题 | 问题集合

写在前面 动归和搜索似乎我打得特憋懒. 可能是因为搜索打的太少了??? 然后之前做过的一些题我就不再写了,比如填涂颜色/海战啥的? 然后每一题打两种解法(:Dfs/Bfs 前提是在题目里两种都能A P1596 湖计数 题目描述 Due to recent rains, water has pooled in various places in Farmer John's field, which is represented by a rectangle of N x M (1 <= N <=

HDU 5012 Dice (bfs + 记忆化搜索)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5012 Problem Description There are 2 special dices on the table. On each face of the dice, a distinct number was written. Consider a1.a2,a3,a4,a5,a6 to be numbers written on top face, bottom face, left f