计蒜客————Daydreaming Stockbroker

来源:互联网 发布:iphone显示无网络连接 编辑:程序博客网 时间:2024/06/05 17:24
  •  28.91%
  •  1000ms
  •  65536K


Gina Reed, the famous stockbroker, is having a slow day at work, and between rounds of solitaire she is day-dreaming. Foretelling the future is hard, but imagine if you could just go back in time and use your knowledge of stock price history in order to maximize your profits!

Now Gina starts to wonder: if she were to go back in time a few days and bring a measly $100 with her, how much money could she make by just buying and selling stock in Rollercoaster Inc. (the most volatile stock in existence) at the right times? Would she earn enough to retire comfortably in a mansion on Tenerife?

image.png

Note that Gina can not buy fractional shares, she must buy whole shares in RollercoasterInc. The total number of shares in Rollercoaster Inc. is 100 000, so Gina can not own more than100 000 shares at any time. In Gina’s daydream, the world is nice and simple: there are no fees for buying and selling stocks, stock prices change only once per day, and her trading does not influence the valuation of the stock.

Input

The first line of input contains an integer (≤ ≤ 365), the number of days that Gina goes back in time in her daydream. Then follow lines, the i’th of which contains an integer pi(≤ p≤ 500) giving the price at which Gina can buy or sell stock in Rollercoaster Inc. on day i. Days are ordered from oldest to newest.

Output

Output the maximum possible amount of money Gina can have on the last day. Note that the answer may exceed 2^{32}232

样例输入

6100200100150125300

样例输出

650

用数组下标表示可能拥有的股票数,数据表示剩余的金钱.
每次只有两种操作,买入和卖出
通过模拟获取结果

#include <iostream>#include <cstdio>#include <algorithm>#include <cstring>#include <set>using namespace std;int main() {    int n;    while(~scanf("%d",&n)) {        set<long long>se1;        se1.insert(0);        long long Map[100002]= {};        Map[0]=100;        while(n--) {            long long temp;            scanf("%lld",&temp);            for(set<long long>::iterator it=se1.begin(); it!=se1.end(); it++) {                long long x=(*it)+Map[(*it)]/temp,y=Map[(*it)]%temp;                if(x>100000) {                    y+=(x-100000)*temp;                    x=100000;                }                se1.insert(x);                Map[x]=max(Map[x],y);                Map[0]=max(Map[0],Map[(*it)]+(*it)*temp);            }        }        printf("%lld\n",Map[0]);    }    return 0;}


原创粉丝点击