Codeforces 466 B. Wonder Room
B. Wonder Room
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
The start of the new academic year brought about the problem of accommodation students into dormitories. One of such dormitories has aa × b square meter wonder room. The caretaker wants to accommodate exactly n students there. But the law says that there must be at least 6 square meters per student in a room (that is, the room for n students must have the area of at least 6n square meters). The caretaker can enlarge any (possibly both) side of the room by an arbitrary positive integer of meters. Help him change the room so as all nstudents could live in it and the total area of the room was as small as possible.
Input
The first line contains three space-separated integers n, a and b (1 ≤ n, a, b ≤ 109) — the number of students and the sizes of the room.
Output
Print three integers s, a1 and b1 (a ≤ a1; b ≤ b1) — the final area of the room and its sizes. If there are multiple optimal solutions, print any of them.
Sample test(s)
input
3 3 5
output
18
3 6
input
2 4 4
output
16
4 4
#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long int LL;
LL n,a,b;
int main()
{
cin>>n>>a>>b;
LL s=n*6;
if(a*b>=s)
{
cout<<a*b<<endl;
cout<<a<<" "<<b<<endl;
return 0;
}
bool flag=false;
if(b<a)
{
swap(a,b);
flag=true;
}
LL X,Y,AREA=(1LL<<62);
int nt=0;
for(LL i=a;i<s;i++)
{
LL j=s/i;
if(j*i<s) j++;
nt++;
if(j<b) break;
if(j*i<AREA)
{
AREA=i*j;
X=i;Y=j;
if(flag) swap(X,Y);
}
else if(j*i==s)
{
cout<<i*j<<endl;
if(flag) swap(i,j);
cout<<i<<" "<<j<<endl;
return 0;
}
else if(j*i>AREA&&nt>20000)
{
break;
}
}
cout<<X*Y<<endl;
cout<<X<<" "<<Y<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.