HDU 4788

来源:互联网 发布:nc57 数据字典 微盘 编辑:程序博客网 时间:2024/05/23 01:16

      区域赛的水题,不过通过这道题我才知道printf函数可以自己实现四舍五入。

代码(G++):

#include <iostream>#include <cstdio>#include <cmath>using namespace std;int main(){    //freopen("in.txt","r",stdin);    int t,c,x,k;    char unit[5];    double ans;    scanf("%d",&t);    for(c=1;c<=t;c++)    {        scanf("%d%s",&x,unit);        if(unit[1]=='B') k=0;        else if(unit[1]=='K') k=1;        else if(unit[1]=='M') k=2;        else if(unit[1]=='G') k=3;        else if(unit[1]=='T') k=4;        else if(unit[1]=='P') k=5;        else if(unit[1]=='E') k=6;        else if(unit[1]=='Z') k=7;        else if(unit[1]=='Y') k=8;        ans=1-pow(1000.0/1024,k);        printf("Case #%d: %.2f%%\n",c,ans*100);    }    return 0;}

题目(http://acm.hdu.edu.cn/showproblem.php?pid=4788):

Hard Disk Drive

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)


Problem Description
  Yesterday your dear cousin Coach Pang gave you a new 100MB hard disk drive (HDD) as a gift because you will get married next year.
  But you turned on your computer and the operating system (OS) told you the HDD is about 95MB. The 5MB of space is missing. It is known that the HDD manufacturers have a different capacity measurement. The manufacturers think 1 “kilo” is 1000 but the OS thinks that is 1024. There are several descriptions of the size of an HDD. They are byte, kilobyte, megabyte, gigabyte, terabyte, petabyte, exabyte, zetabyte and yottabyte. Each one equals a “kilo” of the previous one. For example 1 gigabyte is 1 “kilo” megabytes.
  Now you know the size of a hard disk represented by manufacturers and you want to calculate the percentage of the “missing part”.
 

Input
  The first line contains an integer T, which indicates the number of test cases.
  For each test case, there is one line contains a string in format “number[unit]” where number is a positive integer within [1, 1000] and unit is the description of size which could be “B”, “KB”, “MB”, “GB”, “TB”, “PB”, “EB”, “ZB”, “YB” in short respectively.
 

Output
  For each test case, output one line “Case #x: y”, where x is the case number (starting from 1) and y is the percentage of the “missing part”. The answer should be rounded to two digits after the decimal point.
 

Sample Input
2100[MB]1[B]
 

Sample Output
Case #1: 4.63%Case #2: 0.00%
Hint
 

0 0
原创粉丝点击