习题10-2 勤劳的蜜蜂 UVa808

1.题目描述:点击打开链接

2.解题思路:本题利用构造法解决。本题我思考了很久,但迟迟没有很好的思路。最后才意识到只需要按照蜂巢的构造在xOy坐标系中画出这些点即可求解了。。蜂巢的画法不难通过观察发现,类似于螺旋结构。把(0,0)安排为第一个点,纵向距离和横向距离都为2个单位距离。这样便可以将图形中所有的店全部画出来。经过计算不难知道,只需要循环60次即可将10000以内的点表示出来。

这样输入的相当于是点的序号,由点的坐标不难得到两点的横向距离x和纵向距离y。当y≤x时,最短距离为x。否则,由于纵向和横向都间距2个单位,因此实际上最短距离为x,y的平均值。

3.代码:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<algorithm>
#include<string>
#include<sstream>
#include<set>
#include<vector>
#include<stack>
#include<map>
#include<queue>
#include<deque>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<functional>
using namespace std;

const int N = 20005;
const int dx[] = { -1, 0, 1, 1, 0 };
const int dy[] = { 1, 2, 1, -1, -2 };

struct Point
{
	int x, y;
	Point(){}
	Point(int x, int y)
	{
		this->x = x;
		this->y = y;
	}
}p[N];
int a, b;
void init()
{
	int pn = 1, x = 0, y = 0;
	p[pn++] = Point(x, y);
	y -= 2;
	p[pn++] = Point(x, y);
	for (int i = 1; i <= 60; i++)
	{
		for (int j = 0; j < 5; j++)//按顺序画5个方向
		for (int k = 0; k < i; k++)//沿着dx[j],dy[j]方向画i次
		{
			x += dx[j], y += dy[j];
			p[pn++] = Point(x, y);
		}
		y -= 2;
		p[pn++] = Point(x, y);
		for (int j = 0; j < i; j++)//再次回到y轴
		{
			x--; y--;
			p[pn++] = Point(x, y);
		}
	}
}
int main()
{
	//freopen("t.txt", "r", stdin);
	init();
	while (~scanf("%d%d", &a, &b) && (a || b))
	{
		int x = abs(p[a].x - p[b].x);
		int y = abs(p[a].y - p[b].y);
		printf("The distance between cells %d and %d is ", a, b);
		if (y <= x)printf("%d.\n", x);//由于在图中横向的两点也是间隔2个单位,因此直接就是x
		else printf("%d.\n", x + (y - x) / 2);//由于两点的横向,纵向都间隔两个单位,因此要取平均值
	}
	return 0;
}
时间: 2024-11-10 03:34:15

习题10-2 勤劳的蜜蜂 UVa808的相关文章

C语言程序设计教程(第三版)课后习题10.4

1353: C语言程序设计教程(第三版)课后习题10.4 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 296  Solved: 219[Submit][Status][BBS] Description 有n个整数,使前面各数顺序向后移m个位置,最后m个数变成前面m个数,见图.写一函数:实现以上功能,在主函数中输入n个数和输出调整后的n个数. Input 输入数据的个数n n个整数移动的位置m Output 移动后的n个数 Sample Input

问题 1047: C语言程序设计教程(第三版)课后习题10.5

/******************************************************************** @file Main.cpp @date 2017-06-01 12:17:46 @author Zoro_Tiger @brief 问题 1047: C语言程序设计教程(第三版)课后习题10.5 http://www.dotcpp.com/oj/problem1047.html ***************************************

问题 1043: C语言程序设计教程(第三版)课后习题10.1

/******************************************************************** @file Main.cpp @date 2017-05-29 12:55:07 @author Zoro_Tiger @brief 问题 1043: C语言程序设计教程(第三版)课后习题10.1 http://www.dotcpp.com/oj/problem1043.html ***************************************

第一章 课后习题 10

1 #include <iostream> 2 using namespace std; 3 int main() 4 { void sort(int x,int y,int z); 5 int x,y,z; 6 cin>>x>>y>>z; 7 sort(x,y,z); 8 return 0; 9 } 10 void sort(int x,int y,int z) 11 { 12 int temp; 13 if(x>y) {temp=x;x=y;y=t

1046: C语言程序设计教程(第三版)课后习题10.4

题目描述 有n个整数,使前面各数顺序向后移m个位置,最后m个数变成前面m个数,见图.写一函数:实现以上功能,在主函数中输入n个数和输出调整后的n个数. 输入 输入数据的个数n n个整数 移动的位置m 输出 移动后的n个数 样例输入 10 1 2 3 4 5 6 7 8 9 10 2 样例输出 9 10 1 2 3 4 5 6 7 8 1 #include <stdio.h> 2 #define N 100 3 4 // 移动一次 5 move(int a[], int n) 6 { 7 int

APUE 第三版 习题 10.5

这是书本上的答案: See ''Implementing Software Timers'' by Don Libes (C Users Journal, vol. 8, no. 11, Nov. 1990) for an example. A copy of this paper is available online at http://www.kohala.com/start/libes.timers.txt. 我参考上面提到的文档,使用 alarm() 以及time() 简略测试了一下.

常见问题总结之习题10

斜杠  /   反斜杠 \ %r打印代码里的原始字符串,其中包含原始的转义字符.%r用户调试,%s用户显示. print 后每一行增加一个(,),这样print就不会输出换行符而结束这一行跑到下一行去了. input和raw_input区别:input会假设用户输入的是合法的python表达式/raw_input会把所有的输入当作原始数据,然后将其放入字符串中(). 原文地址:https://www.cnblogs.com/corewarsbin/p/10895681.html

9.8——模拟赛

T1 洛谷 P2966 [USACO09DEC]牛收费路径Cow Toll Paths 题目描述 Like everyone else, FJ is always thinking up ways to increase his revenue. To this end, he has set up a series of tolls that the cows will pay when they traverse the cowpaths throughout the farm. The c

C++ Primer 学习笔记_36_STL实践与分析(10)--map类型(下

STL实践与分析 --map类型(下) 六.查找并读取map中的元素 map容器提供了两个操作:count和find,用于检查某个键是否存在而不会插入该键: 不修改map对象的查询 m.count(k) 返回m中k的出现次数 m.find(k) 如果m容器中存在k索引的元素,则返回指向该元素的迭代器.如果不存在,则返回超出末端的迭代器 1.使用count检查map对象中某键是否存在 因为map容器只允许一个键对应一个实例,所以,对于map对象,count成员的返回值只能是1或0. 如果返回值非0