結果
問題 | No.5003 物理好きクリッカー |
ユーザー | nii |
提出日時 | 2018-12-04 19:04:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9,609 ms / 10,000 ms |
コード長 | 6,906 bytes |
コンパイル時間 | 3,039 ms |
実行使用メモリ | 42,944 KB |
スコア | 100,548,584,283 |
平均クエリ数 | 10000.00 |
最終ジャッジ日時 | 2021-07-19 08:33:59 |
合計ジャッジ時間 | 305,497 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge10 |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8,834 ms
41,508 KB |
testcase_01 | AC | 8,974 ms
40,888 KB |
testcase_02 | AC | 9,168 ms
40,408 KB |
testcase_03 | AC | 8,752 ms
40,728 KB |
testcase_04 | AC | 9,021 ms
40,416 KB |
testcase_05 | AC | 9,068 ms
40,776 KB |
testcase_06 | AC | 9,527 ms
40,904 KB |
testcase_07 | AC | 9,297 ms
40,804 KB |
testcase_08 | AC | 9,311 ms
40,640 KB |
testcase_09 | AC | 9,264 ms
40,924 KB |
testcase_10 | AC | 9,321 ms
40,420 KB |
testcase_11 | AC | 9,242 ms
41,120 KB |
testcase_12 | AC | 8,766 ms
40,576 KB |
testcase_13 | AC | 8,883 ms
40,996 KB |
testcase_14 | AC | 8,844 ms
40,944 KB |
testcase_15 | AC | 8,914 ms
40,852 KB |
testcase_16 | AC | 8,983 ms
40,640 KB |
testcase_17 | AC | 9,609 ms
41,140 KB |
testcase_18 | AC | 9,046 ms
41,044 KB |
testcase_19 | AC | 8,768 ms
40,952 KB |
testcase_20 | AC | 9,070 ms
40,364 KB |
testcase_21 | AC | 9,088 ms
42,840 KB |
testcase_22 | AC | 8,961 ms
40,892 KB |
testcase_23 | AC | 9,184 ms
40,540 KB |
testcase_24 | AC | 9,040 ms
41,104 KB |
testcase_25 | AC | 8,884 ms
40,776 KB |
testcase_26 | AC | 9,328 ms
40,412 KB |
testcase_27 | AC | 9,224 ms
40,568 KB |
testcase_28 | AC | 8,765 ms
40,692 KB |
testcase_29 | AC | 8,587 ms
40,968 KB |
testcase_30 | AC | 9,083 ms
41,252 KB |
testcase_31 | AC | 9,198 ms
40,464 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; // const int64_t CYCLES_PER_SEC=2800000000; struct Timer{ int64_t start; Timer(){reset();} void reset(){start=getcycle();} void plus(double a){start-=(a*CYCLES_PER_SEC);} inline double get(){return (double)(getcycle()-start)/CYCLES_PER_SEC;} inline int64_t getcycle(){ uint32_t low,high; __asm__ volatile ("rdtsc":"=a"(low),"=d"(high)); return ((int64_t)low)|((int64_t)high<<32); } }; int n; string s; long long efficiency[6]; long long buyprice[6][10001]; long long sellprice[6][10001]; long long reinforceprice[6][10001]; int Fever[100000]; // struct action{ int type=-1;//0:click.1:buy,2:sell,3:reinforce,4:enhclick int idx=-1;//0:click,1:hand,2:lily,3:factory,4:casino,5:grimoire }; struct state{ long long cookie=0; long long future=0; vector<action> order; int inst_cn[6]={1,0,0,0,0,0};//0:click,1:hand,2:lily,3:factory,4:casino,5:grimoire int inst_lv[6]={0,0,0,0,0,0};//0:click,1:hand,2:lily,3:factory,4:casino,5:grimoire }; inline bool operator<(const state&left,const state&right){ return left.future+left.cookie<right.future+right.cookie; } // int beam_width=1; state greedy(){ priority_queue<state> nowstate; state nii; nowstate.push(nii); int fever=0; bool sale=false; long long ma=0; for(int i=0;i<n;++i){ ma=max(ma,nowstate.top().cookie); if(i%1000==0){ cerr<<"Greedy begin"<<" "<<i<<" "<<ma<<endl; for(int i=0;i<6;i++){ cerr<<nowstate.top().inst_cn[i]<<" "; } cerr<<endl; for(int i=0;i<6;i++){ cerr<<nowstate.top().inst_lv[i]<<" "; } cerr<<endl; } priority_queue<state> nextstate; for(int j=0;j<beam_width&&!nowstate.empty();++j){ queue<state> nexstate; state now=nowstate.top(); nowstate.pop(); //action state mem=now; //click now.cookie+=now.inst_cn[0]*(1LL<<now.inst_lv[0]); now.order.push_back({0,0}); for(int k=1;k<6;k++){ now.cookie+=efficiency[k]*now.inst_cn[k]*(1LL<<now.inst_lv[k])*(fever>0?7:1); } if(s[i]=='B'){ now.cookie+=ceil((double)now.cookie*0.01); } nextstate.push(now); now=mem; //buy for(int k=1;k<6;++k){ if(now.cookie>=(sale?ceil((double)buyprice[k][now.inst_cn[k]]*0.9):buyprice[k][now.inst_cn[k]])){ now.cookie-=(sale?ceil((double)buyprice[k][now.inst_cn[k]]*0.9):buyprice[k][now.inst_cn[k]]); now.inst_cn[k]++; now.future=efficiency[k]*now.inst_cn[k]*(1LL<<now.inst_lv[k])*(n-i); now.order.push_back({1,k}); for(int l=1;l<6;++l){ now.cookie+=efficiency[l]*now.inst_cn[l]*(1LL<<now.inst_lv[l])*(fever>0?7:1); } if(s[i]=='B'){ now.cookie+=ceil((double)now.cookie*0.01); } if(k==5){ beam_width++; beam_width=min(beam_width,8); now.future*=7; } nextstate.push(now); now=mem; } } //sell for(int k=1;k<6;++k){ if(i<=9990){ break; } if(now.inst_cn[k]>0){ now.cookie+=sellprice[k][now.inst_cn[k]]; now.inst_cn[k]--; now.order.push_back({2,k}); for(int l=1;l<6;++l){ now.cookie+=efficiency[l]*now.inst_cn[l]*(1LL<<now.inst_lv[l])*(fever>0?7:1); } if(s[i]=='B'){ now.cookie+=ceil((double)now.cookie*0.01); } nextstate.push(now); now=mem; } } //reinforce for(int k=1;k<6;++k){ if(now.inst_cn[k]>0&&now.cookie>=(sale?ceil((double)reinforceprice[k][now.inst_lv[k]]*0.9):reinforceprice[k][now.inst_lv[k]])){ now.cookie-=(sale?ceil((double)reinforceprice[k][now.inst_lv[k]]*0.9):reinforceprice[k][now.inst_lv[k]]); now.inst_lv[k]++; now.future=efficiency[k]*now.inst_cn[k]*(1LL<<now.inst_lv[k])*(n-i); now.order.push_back({3,k}); for(int l=1;l<6;++l){ now.cookie+=efficiency[l]*now.inst_cn[l]*(1LL<<now.inst_lv[l])*(fever>0?7:1); } if(s[i]=='B'){ now.cookie+=ceil((double)now.cookie*0.01); } now.future*=k; if(k==5){ beam_width++; beam_width=min(beam_width,8); now.future*=10; } nextstate.push(now); now=mem; } } //enhclick if(now.cookie>=(sale?ceil((double)reinforceprice[0][now.inst_lv[0]]*0.9):reinforceprice[0][now.inst_lv[0]])){ now.cookie-=(sale?ceil((double)reinforceprice[0][now.inst_lv[0]]*0.9):reinforceprice[0][now.inst_lv[0]]); now.inst_lv[0]++; now.future=efficiency[0]*now.inst_cn[0]*(1LL<<now.inst_lv[0])*(n-i); now.order.push_back({4,0}); for(int l=1;l<6;++l){ now.cookie+=efficiency[l]*now.inst_cn[l]*(1LL<<now.inst_lv[l])*(fever>0?7:1); } if(s[i]=='B'){ now.cookie+=ceil((double)now.cookie*0.01); } nextstate.push(now); now=mem; } } //effect if(s[i]=='F'){ fever=20; }else if(fever>0){ fever--; } if(s[i]=='S'){ sale=true; }else if(sale){ sale=false; } nowstate=nextstate; } cerr<<nowstate.top().cookie<<endl; return nowstate.top(); } // void input(){ // ifstream cin("input.txt"); cin>>n>>s; } void setprice(){ efficiency[0]=1; efficiency[1]=1; efficiency[2]=10; efficiency[3]=120; efficiency[4]=2000; efficiency[5]=25000; buyprice[1][0]=150; buyprice[2][0]=2000; buyprice[3][0]=30000; buyprice[4][0]=600000; buyprice[5][0]=10000000; for(int i=1;i<6;++i){ for(int j=0;j<n;++j){ buyprice[i][j+1]=ceil((double)buyprice[i][j]*6/5); } } for(int i=1;i<6;++i){ for(int j=1;j<n;++j){ sellprice[i][j]=ceil((double)buyprice[i][j-1]/4); } } reinforceprice[0][0]=15; reinforceprice[1][0]=1500; reinforceprice[2][0]=20000; reinforceprice[3][0]=300000; reinforceprice[4][0]=6000000; reinforceprice[5][0]=100000000; for(int i=0;i<6;i++){ for(int j=0;j<20;j++){ reinforceprice[i][j+1]=reinforceprice[i][j]*10; } } } void output(){ // ofstream cout("output.txt"); vector<action> nii=greedy().order; for(int i=0;i<n;i++){ if(nii[i].type==0){ cout<<"click"<<endl; }else if(nii[i].type==1){ if(nii[i].idx==1){ cout<<"buy hand"<<endl; }else if(nii[i].idx==2){ cout<<"buy lily"<<endl; }else if(nii[i].idx==3){ cout<<"buy factory"<<endl; }else if(nii[i].idx==4){ cout<<"buy casino"<<endl; }else{ cout<<"buy grimoire"<<endl; } }else if(nii[i].type==2){ if(nii[i].idx==1){ cout<<"sell hand"<<endl; }else if(nii[i].idx==2){ cout<<"sell lily"<<endl; }else if(nii[i].idx==3){ cout<<"sell factory"<<endl; }else if(nii[i].idx==4){ cout<<"sell casino"<<endl; }else{ cout<<"sell grimoire"<<endl; } }else if(nii[i].type==3){ if(nii[i].idx==1){ cout<<"reinforce hand"<<endl; }else if(nii[i].idx==2){ cout<<"reinforce lily"<<endl; }else if(nii[i].idx==3){ cout<<"reinforce factory"<<endl; }else if(nii[i].idx==4){ cout<<"reinforce casino"<<endl; }else{ cout<<"reinforce grimoire"<<endl; } }else{ cout<<"enhclick"<<endl; } string hoge; cin>>hoge; } } // int main(){ Timer nii; input(); setprice(); output(); cerr<<nii.get()<<endl; return 0; }