zoukankan      html  css  js  c++  java
  • 【贪心】【POJ-3637】Shopaholic

    Description

    Lindsay is a shopaholic. Whenever there is a discount of the kind where you can buy three items and only pay for two, she goes completely mad and feels a need to buy all items in the store. You have given up on curing her for this disease, but try to limit its effect on her wallet.

    You have realized that the stores coming with these offers are quite selective when it comes to which items you get for free; it is always the cheapest ones. As an example, when your friend comes to the counter with seven items, costing 400, 350, 300, 250, 200, 150, and 100 dollars, she will have to pay 1500 dollars. In this case she got a discount of 250 dollars. You realize that if she goes to the counter three times, she might get a bigger discount. E.g. if she goes with the items that costs 400, 300 and 250, she will get a discount of 250 the first round. The next round she brings the item that costs 150 giving no extra discount, but the third round she takes the last items that costs 350, 200 and 100 giving a discount of an additional 100 dollars, adding up to a total discount of 350.

    Your job is to find the maximum discount Lindsay can get.

    Input

    The first line of input gives the number of test scenarios, 1 ≤ t ≤ 20. Each scenario consists of two lines of input. The first gives the number of items Lindsay is buying, 1 ≤ n ≤ 20000. The next line gives the prices of these items, 1 ≤ pi ≤ 20000.

    Output

    For each scenario, output one line giving the maximum discount Lindsay can get by selectively choosing which items she brings to the counter at the same time.

    Sample Input

    1
    6
    400 100 200 350 300 250

    Sample Output

    400
    /***********************************************************************************************************************
    题意:每买3件物品其中价格最低的那件免费 问最大免费多少
    思路:特别特别水的一题....直接排序后加上第三个就行了。。。
    ***********************************************************************************************************************/
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #include <queue>
    #include <stack>
    #include <vector>
    #include <ctime>
    using namespace std;
    int a[20000+10];
    bool cmp(int a, int b)
    {
        return a > b;
    }
    int main()
    {
        //freopen("data.in" , "r" , stdin);
        int t;
        scanf("%d", &t);
        while(t--)
        {
            int n;
            scanf("%d", &n);
            for(int i = 1 ; i <= n ; i ++)
                scanf("%d" , &a[i]);
            sort(a + 1 , a + n + 1 , cmp);
            int ans = 0 ;
            for(int i = 1 ; i <=n ; i ++)
            {
                if(i % 3 == 0)
                    ans += a[i];
            }
            printf("%d
    ", ans);
        }
        //printf("Time used = %.2lf
    " , (double)clock() / CLOCKS_PER_SEC);
        return 0;
    }
  • 相关阅读:
    OSX安装nginx和rtmp模块(rtmp直播服务器搭建)
    用runtime来重写Coder和deCode方法 归档解档的时候使用
    Homebrew安装卸载
    Cannot create a new pixel buffer adaptor with an asset writer input that has already started writing'
    OSX下面用ffmpeg抓取桌面以及摄像头推流进行直播
    让nginx支持HLS
    iOS 字典转json字符串
    iOS 七牛多张图片上传
    iOS9UICollectionView自定义布局modifying attributes returned by UICollectionViewFlowLayout without copying them
    Xcode6 iOS7模拟器和Xcode7 iOS8模拟器离线下载
  • 原文地址:https://www.cnblogs.com/ahu-shu/p/3567220.html
Copyright © 2011-2022 走看看