hdu 5463

Clarke and minecraft

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 880    Accepted Submission(s): 437


Problem Description
Clarke is a patient with multiple personality disorder. One day, Clarke turned into a game player of minecraft. 
On that day, Clarke set up local network and chose create mode for sharing his achievements with others. Unfortunately, a naughty kid came his game. He placed a few creepers in Clarke's castle! When Clarke returned his castle without create mode, creepers suddenly blew(what a amazing scene!). Then Clarke's castle in ruins, the materials scattered over the ground. 
Clark had no choice but to pick up these ruins, ready to rebuild. After Clarke built some chests(boxes), He had to pick up the material and stored them in the chests. Clarke clearly remembered the type and number of each item(each item was made of only one type material) . Now Clarke want to know how many times he have to transport at least. 
Note: Materials which has same type can be stacked, a grid can store 64 materials of same type at most. Different types of materials can be transported together. Clarke's bag has 4*9=36 grids.
 

Input
The first line contains a number  T(1T10) , the number of test cases. 
For each test case: 
The first line contains a number  n , the number of items. 
Then  n  lines follow, each line contains two integer  a,b(1a,b500) a  denotes the type of material of this item,  b  denotes the number of this material.
 

Output
For each testcase, print a number, the number of times that Clarke need to transport at least.
 

Sample Input
   
   
   
   
2 3 2 33 3 33 2 33 10 5 467 6 378 7 309 8 499 5 320 3 480 2 444 8 391 5 333 100 499
 

Sample Output
   
   
   
   
1 2 Hint: The first sample, we need to use 2 grids to store the materials of type 2 and 1 grid to store the materials of type 3. So we only need to transport once;
 

Source
BestCoder Round #56 (div.2)
 

Recommend
hujie   |   We have carefully selected several similar problems for you:   5674  5673  5672  5671  5670 
 

Statistic |  Submit |  Discuss |  Note

一道水题 读了半天 都没读懂5555555555555

题意 大概:

有一个背包有36个格子  每个格子只能放一种物品,且最多只能叠加64个  问要多少次才能将物品运完;

代码:

#include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h> #define Max(a,b)(a>b?a:b) int main() {     int T,n,a,b,ans,sum,i;     int m[550];     scanf("%d",&T);     while(T--)     {         memset(m,0,sizeof(m));         scanf("%d",&n);         while(n--)         {             scanf("%d%d",&a,&b);             m[a]= m[a]+b;         }         sum=0;ans=0;         for(i=1;i<=500;i++)         {             if(m[i]!=0)             {                 sum= sum+m[i]/64;                 if(m[i]%64!=0)                 sum++;                 while(sum>36)                 {                    ans++;                    sum=sum-36;                 }             }         }         if(sum>0) ans++;         printf("%d\n",ans);     }     return 0; }

你可能感兴趣的:(hdu 5463)