蜂窝是由蜜蜂构建的块状蜡单元,可以描述为欧几里得平面的规则平铺,其中三个六边形在每个内部顶点相交。六边形的内角为120度,因此一个点上的三个六边形成360度。下图显示了具有3行4列的完整蜂窝。
在这里,我们保证第二列中的第一个单元格始终位于第一列中第一个单元格的右下角,如上所示。在完整的蜂窝基础上,普通蜂窝可能会丢失相邻单元之间的某些壁,但蜂窝仍处于封闭状态。可能的情况如下图所示。
汉密尔顿(Hamilton)是生活在普通蜂窝中的勇敢蜂。现在,他想从起点移动到指定的目的地。下图给出了从第2列的第一个单元格到第4列的第一个单元格的3×4蜂窝状的可行路径。
请帮助他找到从指定起点到目的地的可行路径必须经过的最小单元数(包括起点和终点)。
Output
对于每个测试用例,输出一行,其中包含汉密尔顿从起始单元格(“ S”)到目的地(“ T”)到起始位置(包括起始单元格和目标位置)所需的最少单元格数量。如果不存在可行路径,则输出-1。
1
3 4
+---+ +---+
/ \ / + +---+ +---+
\ \ / + + S +---+ T +
/ \ / /
+ +---+ + +
\ \ / +---+ +---+ +
/ /
+ +---+ + +
\ / +---+ +---+ +
\ / \ /
+---+ +---+
7
不得不说的是这题真的是很恶心啊,居然卡memset,TLE到怀疑人生,知道看了网上的题解才知道不能memset。
之后这道题就是一比较简单的迷宫模拟而已,所改变的就是前进的步数而已。
然后这道题比较重要的地方是需要判断走半步能不能走,就是会不会遇到墙壁。然后就没啥好说的了。
以下是AC代码:
#include <bits/stdc++.h> using namespace std; struct node { int x, y; int step; }st; const int maxn = 1e3 + 10; int dic[6][2] = {1,3, 1,-3, -1,3, -1,-3, 2,0, -2,0}; char s[maxn*6][maxn*6]; bool vis[maxn*6][maxn*6]; int n, m; int solve() { queue <node> q; node temp, cur; vis[st.x][st.y] = true; q.push(st); while (!q.empty()) { cur = q.front(); q.pop(); if (s[cur.x][cur.y] == ‘T‘) return cur.step; for (int i = 0; i < 6; i++) { temp.x = cur.x + dic[i][0], temp.y = cur.y + dic[i][1], temp.step = cur.step + 1; if (temp.x > 0 && temp.x < 4*n+3 && temp.y > 0 && temp.y < 6*m+3 && s[temp.x][temp.y] == ‘ ‘) { temp.x += dic[i][0], temp.y += dic[i][1]; if (vis[temp.x][temp.y]) continue; vis[temp.x][temp.y] = true; q.push(temp); } } } return -1; } int main() { int t; scanf("%d", &t); while (t--) { scanf("%d %d", &n, &m); getchar(); for (int i = 0; i < 4*n+3; i++) { gets(s[i]); int len = strlen(s[i]); for (int j = 0; j < len; j++) if (s[i][j] == ‘S‘) st.x = i, st.y = j, st.step = 1; } printf("%d\n", solve()); for(int i = 0; i < 4 * n + 3; i++){ int len = strlen(s[i]); for(int j = 0; j < len; j++){ s[i][j] = ‘\0‘; vis[i][j] = false; } } } return 0; }
【2018-2019 ACM-ICPC, Asia Jiaozuo Regional Contest】F.Honeycomb
原文:https://www.cnblogs.com/Vikyanite/p/12184590.html