zoukankan      html  css  js  c++  java
  • 2018 CCPC 网络赛 Buy and Resell

    The Power Cube is used as a stash of Exotic Power. There are n cities numbered 1,2,,n where allowed to trade it. The trading price of the Power Cube in the i-th city is ai dollars per cube. Noswal is a foxy businessman and wants to quietly make a fortune by buying and reselling Power Cubes. To avoid being discovered by the police, Noswal will go to the i-th city and choose exactly one of the following three options on the i-th day:

    1. spend ai dollars to buy a Power Cube
    2. resell a Power Cube and get ai dollars if he has at least one Power Cube
    3. do nothing

    Obviously, Noswal can own more than one Power Cubes at the same time. After going to the n cities, he will go back home and stay away from the cops. He wants to know the maximum profit he can earn. In the meanwhile, to lower the risks, he wants to minimize the times of trading (include buy and sell) to get the maximum profit. Noswal is a foxy and successful businessman so you can assume that he has infinity money at the beginning.

    There are multiple test cases. The first line of input contains a positive integer T (T250), indicating the number of test cases. For each test case:
    The first line has an integer n. (1n105)
    The second line has n integers a1,a2,,an where ai means the trading price (buy or sell) of the Power Cube in the i-th city. (1ai109)
    It is guaranteed that the sum of all n is no more than 5×105.

    For each case, print one line with two integers —— the maximum profit and the minimum times of trading to get the maximum profit.

    大致题意:
    一条直线路径上有n个城市,每个城市对于货物Power Cube有不同的价格,商人A从起点走到终点,在每一个城市可以买一件货物,或卖一件货物,或什么都不做。商人可以携带很多件货物。初始金钱充足的情况下,问到终点的最大利润与最大利润条件下的最小交易次数。

    思路:堆+贪心。

    #include<bits/stdc++.h>
    #define rep(i,a,b) for(int i=a;i<=b;++i)
    using namespace std;
    const int MAXN=1e5+10;
    int a[MAXN];
    int n;
    struct Item
    {
        int t,w;
        int sell;
        Item() {}
        Item(int _t,int _w,int _sell)
        {
            t=_t;
            w=_w;
            sell=_sell;
        }
    };
    bool operator < (Item a,Item  b)
    {
        if(a.w==b.w) return a.sell<b.sell;
        else return a.w > b.w;
    }
    void Input()
    {
        scanf("%d",&n);
        rep(i,1,n)
        {
            scanf("%d",a+i);
        }
    }
    priority_queue<Item > q;
    
    void work()
    {
        Item ini(1,a[1],0);
        q.push(ini);
        int time=0;
        long long ans=0;
        rep(i,2,n)
        {
            Item now=Item(i,a[i],0);
            Item u=q.top();
          //  printf("i:%d u.w:%d u.t:%d
    ",i,u.w,u.t);
            if(u.w<now.w)
            {
                if(u.sell==1)
                {
                    ans+=now.w-u.w;
                    u.sell=0;
                    q.pop();
                    q.push(u);
                    now.sell=1;
                    q.push(now);
                }
                else
                {
                    //printf("i:%d u.t:%d
    ",i,u.t);
                    ans+=now.w-u.w;
                    q.pop();
                    now.sell=1;
                    time+=1;
                    q.push(now);
                }
            }
            else
            {
                q.push(now);
            }
        }
        printf("%lld %d
    ",ans,time*2);
    }
    void init()
    {
        while(!q.empty()) q.pop();
    }
    int main()
    {
        int T;
        scanf("%d",&T);
        rep(tt,1,T)
        {
            init();
            Input();
            work();
        }
        return 0;
    }
  • 相关阅读:
    shape与reshape
    opencv4.5.0 +contrib编译流程
    人脸定位(haar特征)
    最近邻分类法
    人脸识别概述
    跟踪视频中的物体
    估算稠密光流
    resize函数
    swap函数
    hibernate的session执行增删改查方法的执行步骤
  • 原文地址:https://www.cnblogs.com/zhixingr/p/9544755.html
Copyright © 2011-2022 走看看