zoukankan      html  css  js  c++  java
  • hdu 1587 Flowers

    Flowers

    Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3679    Accepted Submission(s): 2412

    Problem Description
    As you know, Gardon trid hard for his love-letter, and now he's spending too much time on choosing flowers for Angel. When Gardon entered the flower shop, he was frightened and dazed by thousands kinds of flowers. "How can I choose!" Gardon shouted out. Finally, Gardon-- a no-EQ man decided to buy flowers as many as possible. Can you compute how many flowers Gardon can buy at most?
     
    Input
    Input have serveral test cases. Each case has two lines. The first line contains two integers: N and M. M means how much money Gardon have. N integers following, means the prices of differnt flowers.
     
    Output
    For each case, print how many flowers Gardon can buy at most. You may firmly assume the number of each kind of flower is enough.
     
    Sample Input
    2 5
    2 3
     
    Sample Output
    2
     1 #include <iostream>
     2 using namespace std;
     3 
     4 int main(){
     5     int n, m, num;
     6     while(cin >> n >> m){
     7         int min = 1000;
     8         for(int i = 0; i < n; i++){
     9             cin >> num;
    10             if(num < min)
    11                 min = num;
    12         }
    13         cout << m / min << endl;    
    14     }
    15     return 0;
    16 }
  • 相关阅读:
    P2761 软件补丁问题
    CF1335F Robots on a Grid
    [bzoj2088]P3505 [POI2010]TEL-Teleportation
    CF1335E Three Blocks Palindrome
    P3831 [SHOI2012]回家的路
    P4568 [JLOI2011]飞行路线(分层图)
    P4774 [NOI2018]屠龙勇士
    P2480 [SDOI2010]古代猪文
    CF #632 (Div. 2) 对应题号CF1333
    BSGS 和扩展
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/5560618.html
Copyright © 2011-2022 走看看