UVa 121 - Pipe Fitters

题目:在一个矩形中摆放圆,要求每行或每列的圆是相切的,问最多能放多少个。

分析:计算几何,数论。首先计算矩形摆放,然后计算交叉摆放(每行相同和相邻行差1个)求最大即可。

说明:╮(╯▽╰)╭当成最大摆放WA好几次。

#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cmath>

using namespace std;

//题目方式摆放
int getmin(double x, double y)
{
	int a = (int)x,m = 0;
	int b = (int)(2.0*(y-1.0)/sqrt(3.0))+1;
	if (m < a*b-b/2)
		m = a*b-b/2;
		a = (int)x;
	if (a+0.5 <= x && m < a*b)
		m = a*b;
	return m;
}

//最大数目摆放
int getmax(double x, double y)
{
	int a = (int)x,m = 0;
	//n+1,n,n+1方式
	while (a > 1 && y >= 1) {
		double d = (x-1.0)/(a-1.0);
		if (d >= 2) break;
		double r = sqrt(1.0-0.25*d*d);
		if (r < 0.5) r = 0.5;
		int b = (int)((y-1.0)/r)+1;
		if (m < a*b-b/2)
			m = a*b-b/2;
		a --;
	}
	//n,n,n方式
	a = (int)x;
	while (a > 0 && y >= 1) {
		double d = 2*(x-1.0)/(2*a-1.0);
		if (d >= 2) break;
		if (d >= 1) {
			double r = sqrt(1.0-0.25*d*d);
			if (r < 0.5) r = 0.5;
			int b = (int)((y-1.0)/r)+1;
			if (m < a*b)
				m = a*b;
		}
		a --;
	}
	return m;
}

int main()
{
	double x,y;
	while (cin >> x >> y) {
		int n = (int)x*(int)y,m = 0,p,q;

		p = getmin(x, y);
		if (p > m) m = p;
		q = getmin(y, x);
		if (q > m) m = q;

		if (m > n && x >= 1 && y >= 1)
			cout << m << " skew" << endl;
		else cout << n << " grid" << endl;
	}
	return 0;
}
时间: 2024-09-30 07:20:46

UVa 121 - Pipe Fitters的相关文章

HOJ 题目分类

转自:http://blog.sina.com.cn/s/blog_65f3869301011a1o.html ******************************************************************************* 简单题(包括枚举,二分查找,(复杂)模拟,基础数据结构(栈.队列),杂题等 ****************************************************************************

[题解]UVa 12661 Funny Car Racing - spfa

很简单的一道最短路问题.分情况处理赛道的打开和关闭. Code 1 /** 2 * UVa 3 * Problem#12661 4 * Accepted 5 * Time:50ms 6 */ 7 #include<iostream> 8 #include<fstream> 9 #include<sstream> 10 #include<cstdio> 11 #include<cstdlib> 12 #include<cstring>

[题解]UVa 11082 Matrix Decompressing

开始眨眼一看怎么也不像是网络流的一道题,再怎么看也觉得像是搜索.不过虽然这道题数据范围很小,但也不至于搜索也是可以随随便便就可以过的.(不过这道题应该是special judge,因为一题可以多解而且题目中然而并没有什么要求,所以说可以考虑思考一下这道题有木有什么"套路"之类的通法) 比如说有这么一组数据 原矩阵 1 2 3 4 7 8 9 5 6 输入 3 3 6 25 45 14 28 45 然后将每一行的和写在每一列对应的行上(很明显有问题) 6 0 0 19 0 0 20 0

[uva] 10099 - The Tourist Guide

10099 - The Tourist Guide 题目页:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1040 Mr.G.自己也算一个人……… 反映到代码里是127行 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 3

UVa 1583 Digit Generator(数)

For a positive integer N , the digit-sum of N is defined as the sum of N itself and its digits. When M is the digitsum of N , we call N a generator of M . For example, the digit-sum of 245 is 256 (= 245 + 2 + 4 + 5). Therefore, 245 is a generator of 

UVa 11888 Abnormal 89&#39;s

方法:Manacher Manacher算法在O(length) 时间内求出各个回文子串的长度.O(length) 时间检查时那一种情况. code: 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <iostream> 5 #include <string> 6 #include <vector> 7 #include <st

UVa 12100 Printer Queue (习题 5-7)

传送门:https://uva.onlinejudge.org/external/121/12100.pdf 题意:队列中待打印的任务(1 <= n <= 100)带有优先级(1-9), 打印步骤为每次从队首拿出一个, 如果队列中没有优先级比该任务高的, 打印这个任务; 若有优先级高的, 把这个任务放到队尾,  并打印优先级最高的. 每打印一次耗时1分钟, 求给定任务什么时候打印. 水题A半天    不愧是弱渣.......... 最坏的情况需要maxn*maxn的空间........ fro

UVA 658 It&#39;s not a Bug, it&#39;s a Feature! (单源最短路,dijkstra+优先队列,变形,经典)

题意:有n个bug,有m个补丁,每个补丁有一定的要求(比如某个bug必须存在,某个必须不存在,某些无所谓等等),打完出来后bug还可能变多了呢.但是打补丁是需要时间的,每个补丁耗时不同,那么问题来了:要打多久才能无bug?(同1补丁可重复打) 分析: n<=20,那么用位来表示bug的话有220=100万多一点.不用建图了,图实在太大了,用位图又不好玩.那么直接用隐式图搜索(在任意点,只要满足转移条件,任何状态都能转). 但是有没有可能每个状态都要搜1次啊?那可能是100万*100万啊,这样出题

uva 11610 Reverse Prime

Problem FReverse Prime Input: Standard Input Output: Standard Output There are a few 7 digit positive numbers whose reverse number is a prime number and less than 10^6.  For example: 1000070, 1000090 and 1000240 are first few reverse prime numbers be