HDU 5867 Water problem(复杂水题)

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<math.h>
int E[1005];
int EE[1005];
int main()
{
    E[1]=3;     E[11]=6;
    E[2]=3;     E[12]=6;                E[200]=10;
    E[3]=5;     E[13]=8;    E[30]=6;    E[300]=12;
    E[4]=4;     E[14]=8;    E[40]=5;    E[400]=11;
    E[5]=4;     E[15]=7;    E[50]=5;    E[500]=11;
    E[6]=3;     E[16]=7;    E[60]=5;    E[600]=10;
    E[7]=5;     E[17]=9;    E[70]=7;    E[700]=12;
    E[8]=5;     E[18]=8;    E[80]=6;    E[800]=12;
    E[9]=4;     E[19]=8;    E[90]=6;    E[900]=11;
    E[10]=3;    E[20]=6;    E[100]=10;  E[1000]=11;
    for(int i=1;i<=1000;i++)
    {
        int ui=i;
        if(i<=20)
        {
            EE[i]=EE[i-1]+E[i];
        }
        else
        {
            if(i<100&&i%10!=0)
            {
                E[i]=E[i%10]+E[i/10*10];
                EE[i]=EE[i-1]+E[i];
            }
            else if(i<100&&i%10==0)
            {
                EE[i]=EE[i-1]+E[i];
            }
            else
            {
                if(i%100==0)
                {
                    EE[i]=EE[i-1]+E[i];
                }
                else
                {
                    E[i]=E[i/100*100]+E[i%100]+3;
                    EE[i]=EE[i-1]+E[i];
                }
            }
        }
    }
    int t;  scanf("%d",&t);
    while(t--)
    {
        int a;  scanf("%d",&a);
        printf("%d\n",EE[a]);
    }
}

Water problem

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


Problem Description
If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3+3+5+4+4=19 letters used in total.If all the numbers from 1 to n (up to one thousand) inclusive were written out in words, how many letters would be used?

Do not count spaces or hyphens. For example, 342 (three hundred and forty-two) contains 23 letters and 115 (one hundred and fifteen) contains 20 letters. The use of "and" when writing out numbers is in compliance with British usage.
 

Input
There are multiple test cases. The first line of input contains an integer T, indicating the number of test cases.

For each test case: There is one positive integer not greater one thousand.
 

Output
For each case, print the number of letters would be used.
 

Sample Input
  
  
3 1 2 3
 

Sample Output
  
  
3 6 11
 

Author
BUPT
 

Source
 

Recommend
wange2014   |   We have carefully selected several similar problems for you:   5866  5865  5864  5863  5862 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值