2018ACM/ICPC亚洲区域赛(焦作)F. Honeycomb

目录

  • F. Honeycomb (2018-ACM/ICPC焦作)

F. Honeycomb (2018-ACM/ICPC焦作)


Problem F. Honeycomb
Input file: standard input
Output file: standard output

A honeycomb is a mass wax cells built by honey bees, which can be described as a regular tiling of the
Euclidean plane, in which three hexagons meet at each internal vertex. The internal angle of a hexagon is
120 degrees, so three hexagons at a point make a full 360 degrees. The following figure shows a complete
honeycomb with 3 rows and 4 columns.

Here we guarantee that the first cell in the second column always locates in the bottom right side of
the first cell in the first column, as shown above. A general honeycomb may, on the basis of a complete
honeycomb, lose some walls between adjacent cells, but the honeycomb is still in a closed form. A possible
case looks like the figure below.

Hamilton is a brave bee living in a general honeycomb. Now he wants to move from a starting point to
a specified destination. The image below gives a feasible path in a 3×4 honeycomb from the 1-st cell in
the 2-nd column to the 1-st cell in the 4-th column.

Please help him find the minimum number of cells that a feasible path has to pass through (including
the starting point and the destination) from the specified starting point to the destination.

Input
The input contains several test cases, and the first line contains a positive integer T indicating the number
of test cases which is up to 1e4.
For each test case, the first line contains two integers r and c indicating the number of rows and the
number of columns of the honeycomb, where 2 <= r, c <= 1e3.
The following (4r+3) lines describe the whole given honeycomb, where each line contains at most (6c+3)
characters. Odd lines contain grid vertices represented as plus signs (“+”) and zero or more horizontal
edges, while even lines contain two or more diagonal edges. Specifically, a cell is described as 6 vertices
and at most 6 edges. Its upper boundary or lower boundary is represented as three consecutive minus
signs (“-”). Each one of its diagonal edges, if exists, is a single forward slash (“/”) or a single backslash
(“”) character. All edge characters will be placed exactly between the corresponding vertices. At the
center of the starting cell (resp. the destination), a capital “S” (resp. a capital “T”) as a special character
is used to indicate the special cell. All other characters will be space characters. Note that if any input
line could contain trailing whitespace, that whitespace will be omitted.
We guarantee that all outermost wall exist so that the given honeycomb is closed, and exactly one “S”
and one “T” appear in the given honeycomb. Besides, the sum of r · c in all test cases is up to 2e6.

Output
For each test case, output a line containing the minimum number of cells that Hamilton has to visit moving
from the starting cell (“S”) to the destination (“T”), including the starting cell and the destination. If
no feasible path exists, output -1 instead.

题意是二维平面最短路,不过地图形成蜂窝一样的。我们需要做一个映射。这题题目内存给了一个G,%>_<%,!!!知道这一点后就很好做了。现场题目找不到内存时间,网页提交的地方也没写,下载输入输出的地方才写了。赛后才找到。唉。。。

具体看代码把,映射点

map<pair<int, int>, vector<pair<int, int> > > E;存图,然后bfs。

代码在学校windows都跑不起来,内存用太多了。

注意memset复杂度可能不太对。因为T比较多。

标记点不要用set<pair<int, int> >s了,直接开一个二维数组。内存不要命的开

/**
1
3 412345678901234567890123456789
1  +---+   |   +---+   |
2 /  |  \  |  /  |  \  |
3+---O   +---+   O   +---+      [3, 5]      [3, 17]
4 \  |     |  \     /  |  \
5  +   +   S   +---+   T   +        [5, 11]     [5, 23]
6 /     \     /           /
7+       +---+       +   +      [7, 5]      [7, 17]
8 \           \     /     \
9  +---+       +---+       +        [9, 11]     [9, 23]
0 /                       /
1+       +---+       +   +
2 \                 /     \
3  +---+       +---+       +
4       \     /     \     /
5        +---+       +---+*/
#include <bits/stdc++.h>using namespace std;
const int MAX_R = (1e3 + 10) * 4 + 3;
const int MAX_C = (1e3 + 10) * 6 + 3;char mp[MAX_R][MAX_C];bool point_flag[MAX_R][MAX_C];int t, r, c;int Next[6][2] = {-1, -3, -1, 3, 1, -3, 1, 3, -2, 0, 2, 0};//set<pair<int, int> > point_flag;map<pair<int, int>, vector<pair<int, int> > > E;void init() {for(int i = 3; i <= MAX_R; i += 4) {for(int j = 5; j <= MAX_C; j += 12) {//point_flag.insert(make_pair(i, j));point_flag[i][j] = true;}}for(int i = 5; i <= MAX_R; i += 4) {for(int j = 11; j <= MAX_C; j += 12) {//point_flag.insert(make_pair(i, j));point_flag[i][j] = true;}}
}bool isin(int x, int y) {return x >= 1 && x <= 4 * r + 3 && y >= 1 && y <= 6 * c + 3;
}struct Node {pair<int, int>pos;int step;Node() {}Node(int xx, int yy, int st) {step = st;pos = make_pair(xx, yy);}Node(pair<int, int>p, int st) {step = st;pos = p;}
};int bfs(pair<int, int> &begin_s, pair<int, int> &end_t) {queue<Node>que;set<pair<int, int> >vis;que.push(Node(begin_s, 1));vis.insert(begin_s);while(!que.empty()) {Node now = que.front();que.pop();if(now.pos == end_t) {return now.step;}for(auto it: E[now.pos]) {if(!vis.count(it)) {vis.insert(it);mp[it.first][it.second] = '#';que.push(Node(it, now.step + 1));}}}return -1;
}int main() {init();scanf("%d", &t);while(t--) {E.clear();scanf("%d %d", &r, &c);getchar();for(int i = 1; i <= 4 * r + 3; i++ ) {fgets(mp[i] + 1, MAX_C, stdin);}pair<int, int>begin_s, end_t;for(int i = 1; i <= 4 * r + 3; i++ ) {for(int j = 1; mp[i][j] != '\n'; j++ ) {if(point_flag[i][j]) {if(mp[i][j] == 'S') {begin_s = make_pair(i, j);}if(mp[i][j] == 'T') {end_t = make_pair(i, j);}for(int k = 0; k < 6; k++ ) {int gx = i + Next[k][0];int gy = j + Next[k][1];int mx = i + Next[k][0] * 2;int my = j + Next[k][1] * 2;if(!isin(gx, gy) || !isin(mx, my) || mp[gx][gy] != ' ') {continue;}if(mp[mx][my] == 'S' || mp[mx][my] == 'T' || mp[mx][my] == ' ') {E[make_pair(i, j)].push_back(make_pair(mx, my));}}}}}printf("%d\n", bfs(begin_s, end_t));}return 0;
}

转载于:https://www.cnblogs.com/Q1143316492/p/10092877.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/412659.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[css]怎么改变选中文本的文字颜色和背景色?

[css]怎么改变选中文本的文字颜色和背景色&#xff1f; ::selection { background-color: #222; color: white; }个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.6:generate failed: Index: 0, Size: 0

大家好&#xff0c;我是烤鸭&#xff1a; 报错信息如下&#xff1a; Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.6:generate (default-cli) on project etc-bosc-repository: Execution default-cli of goal org.mybatis.generator:m…

.NETCore_生成实体

先安装以下三个包&#xff0c;或者使用Nuget引用 不要问我为什么&#xff0c;按哥说的做吧&#xff1a; Install-Package Microsoft.EntityFrameworkCore.SqlServer Install-Package Microsoft.EntityFrameworkCore.Tools Install-Package Microsoft.VisualStudio.Web.CodeGene…

[css] 你对响应式设计的理解是什么?知道它基本的原理是吗?要想兼容低版本的IE怎么做呢?

[css] 你对响应式设计的理解是什么&#xff1f;知道它基本的原理是吗&#xff1f;要想兼容低版本的IE怎么做呢&#xff1f; 理解&#xff1a;在不同系统&#xff0c;不同设备&#xff0c;不同尺寸的界面&#xff0c;有良好的用户体验&#xff0c;舒适的阅读体验&#xff0c;交…

php rabbitmq demo

composer安装php rabbitmq包 新建composer.json文件&#xff0c;composer install 安装 {"require": {"php-amqplib/php-amqplib": ">2.6.1"} } 创建config.php文件 <?php return [vendor > [path > ./vendor],rabbitmq > [host…

[css] 你有使用过哪些栅格系统?都有什么区别呢?

[css] 你有使用过哪些栅格系统&#xff1f;都有什么区别呢&#xff1f; bootstrap3 float完成的栅格 bootstrap4 flex完成的栅格个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通…

dubbo源码解析(二)

大家好&#xff0c;我是烤鸭&#xff1a; dubbo 源码解析&#xff1a; 1.服务导出 介绍: Dubbo 服务导出过程始于 Spring 容器发布刷新事件&#xff0c;Dubbo 在接收到事件后&#xff0c;会立即执行服务导出逻辑。整个逻辑大致可分为三个部分&#xff0c;第一部分是前置工作&am…

[css] 请说说*{box-sizing: border-box;}的作用及好处有哪些?

[css] 请说说*{box-sizing: border-box;}的作用及好处有哪些&#xff1f; 还是喜欢用默认的content-box 不考虑老版ie 比较通配符的性能较差 第三方的UI库的盒模型也都是标准盒模型个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持…

执行mongod其他实例出现的问题

windows环境下&#xff0c;配置其他mongo实例&#xff0c;会出现一些问题 1、配置路径不对&#xff0c;执行bat文件时出现闪屏 根据提示创建C:\data\db\ 目录&#xff08;因为mongodb默认在/data/db下创建数据库&#xff09;&#xff0c;重新执行mongod实例&#xff0c;就OK&am…

从 class 文件 看 synchronize 锁膨胀过程(偏向锁 轻量级锁 自旋锁 重量级锁)

大家好&#xff0c;我是烤鸭: 前几天看马士兵老师的并发的课&#xff0c;里边讲到了 synchronize 锁的膨胀过程&#xff0c;今天想用代码演示一下。 1. 简单介绍 关于synchronize jdk 1.5 以后的优化&#xff0c;由重量级锁调整为膨胀过程。分别是 偏向锁 轻量级锁&#xff0…

[css] 说说你对jpg、png、gif的理解,分别在什么场景下使用?有使用过webp吗?

[css] 说说你对jpg、png、gif的理解&#xff0c;分别在什么场景下使用&#xff1f;有使用过webp吗&#xff1f; jpg, 色彩复杂图片 png, 色彩简单图片 gif, 动图, 或者色彩极简的icon等 webp, 判断能使用webp的浏览器就是用webp个人简介 我是歌谣&#xff0c;欢迎和大家一起交…

GC算法与收集器

一.判断对象是否存活 1.引用计数算法 2.可达性分析算法 二.垃圾收集算法 1.标记-清除算法&#xff1a;效率低&#xff0c;内存碎片 2.复制算法&#xff1a;适用于对象存活率低 3.标记-整理算法&#xff1a;没有内存碎片 4.分代收集算法&#xff1a;新生代用复制算法 老年代用标…

[css] 如何消除transition闪屏?

[css] 如何消除transition闪屏&#xff1f; 题目越简单越有含量。 看题意不知道在问什么&#xff0c;说明这个问题自己没注意或不熟悉&#xff0c;而不是去怀疑题目出的有问题。这个问题自己没有遇到过&#xff0c;或者说没有注意过这个问题&#xff0c;网上搜索了下答案&…

php opcache 详解

PHP性能提升之OPcache相关参数详解 工具 memory 发布于December 15, 2016 标签: PHPOPcache 通过将 PHP 脚本预编译的字节码存储到共享内存中来提升 PHP 的性能&#xff0c; 存储预编译字节码的好处就是 省去了每次加载和解析 PHP 脚本的开销。 PHP 5.5.0 及后续版本中已经绑定…

es elasticsearch 几种常见查询场景 二次分组 java读取es的查询json文件

大家好&#xff0c;我是烤鸭&#xff1a; es中几种常见的查询场景,使用java读取es的json文件进行查询。 es 中文使用手册。https://www.elastic.co/guide/cn/elasticsearch/guide/current/foreword_id.html 1. 从最简单的查询开始 GET /_search {"hits" : {&qu…

[css] 元素竖向的百分比设置是相对容器的高度吗?

[css] 元素竖向的百分比设置是相对容器的高度吗&#xff1f; 父级非 auto 的 height 时&#xff0c;子级百分比的 height 才有效。 即使父级有 min-height 或其他子级撑起的高度&#xff0c;子级百分比 height 依旧无效。个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后…

阿里云服务器邮件发送

一个邮件发送的功能&#xff0c;本机调试无问题&#xff0c;但发布到阿里云服务器后邮件发送功能失败。 网上查了下大概是说阿里云把发送邮件的25端口禁用掉了 那么解决方式一就是向阿里云申请开放25端口&#xff0c;但具体如何申请&#xff0c;并未深入操作。 解决方式二&…

全链路追踪竟然如此简单? bytebuddy搭建全链路追踪的demo 附代码

大家好&#xff0c;我是烤鸭&#xff1a; 最近一直在研究全链路追踪&#xff0c;比如cat、skywalking、zipkin等。 发现 skywalking 是基于bytebuddy 实现的&#xff0c;想自己试着写一下demo。 demo的git地址,感兴趣的可以自己试下。代码在idea中可以跑,至于其他场…

[css] 用CSS绘制一个红色的爱心

[css] 用CSS绘制一个红色的爱心 // 用过 就给贴过来了.heart {position: relative;width: 100px;height: 90px;}.heart:before,.heart:after {position: absolute;content: "";left: 50px;top: 0;width: 50px;height: 80px;background: red;border-radius: 50px 50p…

穿透内网,连接动态ip,内网ip打洞-----p2p实现原理(转)

源&#xff1a; 穿透内网&#xff0c;连接动态ip&#xff0c;内网ip打洞-----p2p实现原理转载于:https://www.cnblogs.com/LittleTiger/p/10107849.html