0
点赞
收藏
分享

微信扫一扫

BZOJ 3834: [Poi2014]Solar Panels 分块



3834: [Poi2014]Solar Panels


Time Limit: 20 Sec  Memory Limit: 128 MB

Submit: 323  Solved: 254

[Submit][Status][Discuss]

Description


Having decided to invest in renewable energy, Byteasar started a solar panels factory. It appears that he has hit the gold as within a few days  clients walked through his door. Each client has ordered a single rectangular panel with specified width and height ranges.



The panels consist of square photovoltaic cells. The cells are available in all integer sizes, i.e., with the side length integer, but all cells in one panel have to be of the same size. The production process exhibits economies of scale in that the larger the cells that form it, the more efficient the panel. Thus, for each of the ordered panels, Byteasar would like to know the maximum side length of the cells it can be made of.



n组询问,每次问smin<=x<=smax, wmin<=y<=wmax时gcd(x, y)的最大值。



Input


The first line of the standard input contains a single integer N(1<=N<=1000): the number of panels that were ordered. The following   lines describe each of those panels: the i-th line contains four integers Smin,Smax,Wmin,Wmax(1<=Smin<=Smax<=10^9,1<=Wmin<=Wmax<=10^9), separated by single spaces; these specify the minimum width, the maximum width, the minimum height, and the maximum height of the i-th panel respectively.



Output


Your program should print exactly n lines to the standard output. The i-th line is to give the maximum side length of the cells that the i-th panel can be made of.



Sample Input


4
3 9 8 8
1 10 11 15
4 7 22 23
2 5 19 24


Sample Output


8
7
2
5


HINT




Explanation: Byteasar will produce four solar panels of the following sizes: 8*8 (a single cell), 7*14 (two cells), 4*22 or 6*22 (22 or 33 cells respectively), and 5*20 (four cells).



题解


#include<cmath>
#include<ctime>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<iomanip>
#include<vector>
#include<string>
#include<bitset>
#include<queue>
#include<map>
#include<set>
using namespace std;

inline int read()
{
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch<='9'&&ch>='0'){x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}
	return x*f;
}
void print(int x)
{if(x<0)putchar('-'),x=-x;if(x>=10)print(x/10);putchar(x%10+'0');}

int main()
{
	int T=read();
	register int i,j,ans,a,b,c,d;
	while(T--)
	{
		a=read();b=read();c=read();d=read();
		ans=1;
		for(i=1;i<=min(b,d);i=j+1)
		{
			j=min(d/(d/i),b/(b/i));
			if((a-1)/j<b/j&&(c-1)/j<d/j)ans=max(ans,j);
		}
		print(ans);puts("");
	}
	return 0;
}
/*
4
3 9 8 8
1 10 11 15
4 7 22 23
2 5 19 24

8
7
2
5
*/

举报

相关推荐

0 条评论