POJ 1017 Packets 시 뮬 레이 션
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 40908
Accepted: 13732
Description
A factory produces products packed in square packets of the same height h and of the sizes 1*1, 2*2, 3*3, 4*4, 5*5, 6*6. These products are always delivered to customers in the square parcels of the same height h as the products have and of the size 6*6. Because of the expenses it is the interest of the factory as well as of the customer to minimize the number of parcels necessary to deliver the ordered products from the factory to the customer. A good program solving the problem of finding the minimal number of parcels necessary to deliver the given products according to an order would save a lot of money. You are asked to make such a program.
Input
The input file consists of several lines specifying orders. Each line specifies one order. Orders are described by six integers separated by one space representing successively the number of packets of individual size from the smallest size 1*1 to the biggest size 6*6. The end of the input file is indicated by the line containing six zeros.
Output
The output file contains one line for each line in the input file. This line contains the minimal number of parcels into which the order from the corresponding line of the input file can be packed. There is no line in the output file corresponding to the last ``null'' line of the input file.
Sample Input
0 0 4 0 0 1
7 5 1 0 0 0
0 0 0 0 0 0
Sample Output
2
1
#include <stdio.h>
void SolveCase(int *number)
{
int count=0;
int size=0, size2=0;
// 6*6
count += number[5];
// 5*5
count += number[4];
if(number[4]!=0)
{
number[0] -= number[4]*11;
if(number[0]<0) number[0]=0;
}
// 4*4
count += number[3];
if(number[3]!=0)
{
number[1] -= number[3]*5;
if(number[1]<0){
if(number[0] > 0)
{
size = -number[1];
number[0] -= size*4;
if(number[0] < 0) number[0] = 0;
}
number[1]=0;
}
}
// 3*3
if(number[2]!=0)
{
count+= number[2]/4;
if(number[2]%4 > 0)
{
count ++;
size = number[2]%4;
if(size==1){
if(number[1] > 0)
{
number[1] -= 5;
if(number[1] < 0)
{
size2= -number[1];
if(number[0] > 0)
{
number[0] =number[0] - size2*4 - 7;
if(number[0] < 0)
number[0] = 0;
}
number[1]=0;
}else {
number[0] -= 7;
if(number[0] < 0) number[0] = 0;
}
}
}
if(size==2){
if(number[1] > 0)
{
number[1] -= 3;
if(number[1] < 0)
{
size2 = -number[1];
if(number[0] > 0)
{
number[0] = number[0] - size2*4 - 6;
if(number[0] < 0)
number[0] = 0;
}
number[1]=0;
}else {
number[0] -= 6;
if(number[0] < 0) number[0] = 0;
}
}
}
if(size==3){
if(number[1] > 0)
{
number[1] -= 1;
if(number[1] < 0)
{
size2 = -number[1];
if(number[0] > 0)
{
number[0] = number[0] - size2*4 - 5;
if(number[0] < 0)
number[0] = 0;
}
number[1]=0;
}else {
number[0] -= 5;
if(number[0] < 0) number[0] = 0;
}
}
}
}
}
// 2*2
if(number[1]!=0)
{
count += number[1]/9;
if((size2=number[1]%9) > 0)
{
count ++;
if(number[0]>0)
{
size2 = 9 -size2;
number[0] = number[0] - size2 *4;
if(number[0] < 0) number[0] = 0;
}
}
}
// 1*1
if(number[0] != 0)
{
count += number[0]/36;
if((size=number[0]%36) > 0)
count ++;
}
printf("%d
",count);
}
int main()
{
// freopen("input.txt","r",stdin);
int i, zeroNum;
int number[6];
while(1)
{
for(i=0, zeroNum=0; i < 6; i++)
{
scanf("%d ",&number[i]);
if(number[i]==0) zeroNum ++;
}
if(zeroNum==6) break;
SolveCase(number);
}
// fclose(stdin);
return 0;
}
3*3 !
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Docker를 사용한 React 및 .NET Core 6.0 샘플 프로젝트 - 1부이 기사에서는 Entity Framework Core Code First 접근 방식을 사용하는 ASP.NET Core 6.0 WEP API의 CRUD(만들기, 읽기, 업데이트 및 삭제) 작업에 대해 설명합니다. 웹 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.