2021 탐욕 알고리즘 (최 우선 전재 문제) 물 문제

2618 단어 HDUOJ
    :)
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 50222    Accepted Submission(s): 27412


Problem Description
       ,           8  ,            ,        ,  
                ,           ,                  :             ,            ,                      ?
              ,   ,      100 、50 、10 、5 、2  1   。


Input
            ,               n(n<100),       ,   n      。
n=0       ,    。


Output
              x,              。       。


Sample Input

3
1 2 3
0



Sample Output

4



Author
lcy


Source
C        ( )


Recommend
lcy
#include
int rev[100];
int P[6]={100,50,10,5,2,1};
int RMB(int n)
{
    int i;
    int count=0;
    for(i=1;i<=n;i++)
    {
        for(int j=0;j<6&&rev[i];j++)
        {
            while(rev[i]-P[j]>=0)
            {
                count++;
                rev[i]-=P[j];
            }
        }
    }
    return count;
}
int main(void)
{
    int n;
    while(~scanf("%d",&n)&&n)//      
    {
        for(int i=1;i<=n;i++) scanf("%d",&rev[i]);
        printf("%d
"
,RMB(n)); } return 0; }

좋은 웹페이지 즐겨찾기