結果

問題 No.5003 物理好きクリッカー
ユーザー sinsincoscossinsincoscos
提出日時 2018-12-05 13:41:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 3,500 bytes
コンパイル時間 460 ms
実行使用メモリ 37,068 KB
スコア 0
最終ジャッジ日時 2021-07-19 08:45:30
合計ジャッジ時間 23,078 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cassert>
using namespace std;
typedef long long ll;
typedef pair<ll,int> P;
int N;
int ans[10200][2] = {{0}};
ll resB[10200] = {0},resF[10200] = {0},resS[10200] = {0};
ll fac_num[6] = {0},fac_level[6] = {0},beki[21] = {1};
ll fac_price[6] = {0,150,2000,30000,600000,10000000};//逐次更新する
ll fac_reinforce_price[6] = {15,1500,20000,30000,600000,100000000};//逐次更新する
ll fac_gain[6] = {1,1,10,120,2000,25000};
string fac_name[6] = {"click","hand","lily","factory","casino","grimoire"};


string S,result;

void print(){
	for(int i=1;i<=N;i++){
		if(ans[i][0]==1) cout << "click" << endl;
		if(ans[i][0]==2) cout << "buy " << fac_name[ans[i][1]] << endl;
		if(ans[i][0]==3) cout << "sell " << fac_name[ans[i][1]] << endl;
		if(ans[i][0]==4) cout << "reinforce " << fac_name[ans[i][1]] << endl;
		if(ans[i][0]==5) cout << "enhclick" << endl;
		if(ans[i][0]==6) cout << "nothing" << endl;
		cin >> result;
	}
}


ll gain_from_fac(){
	ll gain = 0;
	for(int i=1;i<=5;i++) gain += beki[fac_level[i]]*fac_num[i]*fac_gain[i];
	return gain;
}


void reinforce_fac(int n){
	fac_level[n]++; fac_reinforce_price[n] *= 10;
}

void buy_fac(int n){
	fac_num[n]++; fac_price[n] = (fac_price[n]*6)/5;	
}

ll is_purchase_good(int n,int time){
	return beki[fac_level[n]]*(N-time+1+(resF[time]*7))+resB[time]*(beki[fac_level[n]]+99)/100 - fac_price[n];
}

ll is_reinforcement_good(int n,int time){
	return beki[fac_level[n]+1]*fac_num[n]*(N-time+1+(resF[time]*7))+resB[time]*(beki[fac_level[n]+1]*fac_num[n]+99)/100 - fac_reinforce_price[n];	
}

ll cost_performance_buy(int n){
	return fac_price[n]/fac_gain[n];
}

ll cost_performance_reinforce(int n){
	return fac_reinforce_price[n]/(fac_gain[n]*2*fac_num[n]);
}

int main(){
	cin >> N >> S;
	fac_num[0] = 1;
	for(int i=1;i<=20;i++) beki[i] = 2*beki[i-1];
	for(int i=N;i>=1;i--){
		resB[i] = (S[i]=='B'); resB[i] += resB[i-1];
		resF[i] = (S[i]=='F'); resF[i] += resF[i-1];
		resS[i] = (S[i]=='S'); resS[i] += resS[i-1];
	}
	ll money = 0;
	int aim = 1;
	for(int i=1;i<=N;i++){
		ll gain = 0,loss = 0;
		if(aim!=-1 && aim<=10 && fac_price[aim]<=money){
			ans[i][0] = 2; ans[i][1] = aim;
			loss = fac_price[aim]; buy_fac(aim);
			ll mi = 1e9;
			aim = -1;
			for(int j=1;j<=5;j++){
				if(mi > cost_performance_buy(j)){
					mi = cost_performance_buy(j); aim = j;
				}
			}
			for(int j=1;j<=5;j++){
				if(fac_num[j]==0) continue;
				if(mi > cost_performance_reinforce(j)){
					mi = cost_performance_reinforce(j); aim = j+10;
				}
			}
//			cerr << aim << endl;
		}else if(aim>=10 && fac_reinforce_price[aim-10]<=money){
			aim -= 10;
			ans[i][0] = 4; ans[i][1] = aim;
			loss = fac_reinforce_price[aim]; reinforce_fac(aim);
			ll mi = 1e9;
			aim = -1;
			for(int j=1;j<=5;j++){
				if(mi > cost_performance_buy(j)){
					mi = cost_performance_buy(j); aim = j;
				}
			}
			for(int j=0;j<=5;j++){
				if(fac_num[j]==0) continue;
				if(mi > cost_performance_reinforce(j)){
					mi = cost_performance_reinforce(j); aim = j+10;
				}
			}
		}else{
			ans[i][0] = 1; gain++;
		}
		gain += gain_from_fac();
		if(S[i-1]=='F') gain *= 7;
		if(S[i-1]=='S'){loss *= 9; loss = (loss+9)/10;}
		money += gain-loss;
		if(S[i-1]=='B') money += (money+99)/100;
		//cerr << money << " " << aim << endl;
		assert(money>=0);
	}
	/*for(int j=0;j<=5;j++){
		cerr << fac_num[j] << " " << fac_level[j] << endl;
		cerr << fac_price[j] << " " << fac_reinforce_price[j] << endl;
	}*/
	cerr << money << endl;
	print();
}
0