結果

問題 No.5003 物理好きクリッカー
ユーザー naimonon77naimonon77
提出日時 2019-09-29 18:45:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 348 ms / 10,000 ms
コード長 9,746 bytes
コンパイル時間 2,906 ms
実行使用メモリ 21,972 KB
スコア 1,984,475,018
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 10:43:48
合計ジャッジ時間 17,127 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
21,528 KB
testcase_01 AC 324 ms
21,348 KB
testcase_02 AC 324 ms
21,864 KB
testcase_03 AC 320 ms
21,528 KB
testcase_04 AC 321 ms
21,696 KB
testcase_05 AC 319 ms
21,852 KB
testcase_06 AC 322 ms
21,852 KB
testcase_07 AC 323 ms
21,900 KB
testcase_08 AC 318 ms
21,876 KB
testcase_09 AC 323 ms
21,528 KB
testcase_10 AC 322 ms
21,684 KB
testcase_11 AC 321 ms
21,516 KB
testcase_12 AC 323 ms
21,864 KB
testcase_13 AC 323 ms
21,504 KB
testcase_14 AC 320 ms
21,528 KB
testcase_15 AC 325 ms
21,876 KB
testcase_16 AC 323 ms
21,840 KB
testcase_17 AC 318 ms
21,840 KB
testcase_18 AC 317 ms
21,516 KB
testcase_19 AC 322 ms
21,372 KB
testcase_20 AC 320 ms
21,516 KB
testcase_21 AC 348 ms
21,540 KB
testcase_22 AC 318 ms
21,732 KB
testcase_23 AC 321 ms
21,852 KB
testcase_24 AC 318 ms
21,540 KB
testcase_25 AC 319 ms
21,804 KB
testcase_26 AC 318 ms
21,864 KB
testcase_27 AC 324 ms
21,528 KB
testcase_28 AC 324 ms
21,528 KB
testcase_29 AC 320 ms
21,696 KB
testcase_30 AC 317 ms
21,528 KB
testcase_31 AC 317 ms
21,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: メンバ関数 ‘void Solver::solve()’ 内:
main.cpp:279:52: 警告: ‘yet_cannot_do’ はこの関数内初期化されずに使用されるかもしれません [-Wmaybe-uninitialized]
  279 |   return { "buy", best_id, best_effi, yet_cannot_do};
      |                                                    ^
main.cpp:263:8: 備考: ‘yet_cannot_do’ はここで定義されています
  263 |   bool yet_cannot_do;
      |        ^~~~~~~~~~~~~

ソースコード

diff #

#define NOMINMAX
#define TEST_MODE true

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include "bits/stdc++.h"
#include <random>
#include <regex>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rep2(i, a, b) for (int i = (a); i < (int)(b); ++i)
#define rrep(i, n) for (int i = (n)-1; i >= 0; --i)
#define rrep2(i, a, b) for (int i = (a)-1; i >= (int)b; --i)
#define range(i, a, b, c) for (int i = a;             \
                                   c > 0 ? i < b : i > b; \
                                   i += c)
#define chmax(a, b) (a = (a) < (b) ? (b) : (a))
#define chmin(a, b) (a = (a) > (b) ? (b) : (a))
using ll = long long;
using ull = unsigned long long;
using ld = long double;
#define all(a) begin(a), end(a)
#define ifnot(a) if (not(a))
#define int long long

#ifdef LOCAL_ENV

#if TEST_MODE == true
const bool test = true;
#define dump(x) cerr << #x << " : " << (x) << " "
#define dumpl(x) dump(x) << endl
#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

int dx[] = { 1, 0, -1, 0 };
int dy[] = { 0, 1, 0, -1 };
const int inf = (int)1 << 60;
const int undefined = inf;
const ll INFL = (ll)1 << 60;
ll mod_n = (int)1e9 + 7;
const double eps = 1e-10;
typedef long double Real;
// return -1, 0, 1
int sgn(const Real &r) { return (r > eps) - (r < -eps); }
int sgn(const Real &a, const Real &b) { return sgn(a - b); }

//.....................
const int MAX = (int)2e5 + 5;

vector<string> split(const string &str, char sep)
{
	vector<string> v;
	stringstream ss(str);
	string buffer;
	while (getline(ss, buffer, sep))
	{
		v.push_back(buffer);
	}
	return v;
}

template<typename T>
string join(const vector<T>& v, const string delim = 0, function<string(T)> f = [](int a) {return to_string(a); }) {
	string s;
	if (!v.empty()) {
		s += f(v[0]);
		for (decltype(v.size()) i = 1, c = v.size(); i < c; ++i) {
			if (delim != "") s += delim;
			s += f(v[i]);
		}
	}
	return s;
}

string join_str(const vector<string>& v, const string delim = 0) {
	return join<string>(v, delim, [](string a) {return a; });
}

string operator * (const string& s, const int& n) {
	string res = "";
	rep(i, n) res += s;
	return res;
}

template <class InputIterator>
int sum(InputIterator begin, InputIterator end)
{
	return accumulate(begin, end, 0ll);
}

template<typename T>
T gcd(T a, T b)
{
	if (a == inf) return b;
	if (b == inf) return a;
	T c;
	while (a != 0) {
		c = a; a = b % a;  b = c;
	}
	return b;
}

template<typename T>
T lcm(T m, T n)
{
	return ((m / gcd(m, n)) * n);
}

template<typename T>
T bit_count(T N) {
	T cnt = 0;
	while (N) {
		if (N & 1) cnt++;
		N >>= 1;
	}
	return cnt;
}

template<typename T>
void print_vec(ostream& ostream, vector<T> a, string sep = "") {
	rep(i, a.size() - 1) ostream << a[i] << sep;
	ostream << a.back() << endl;
}

ll pow_n(ll x, ll n) {
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * x;
		x = x * x;
		n >>= 1;
	}
	return res;
}

template<class T, class U>
T mod_pow(T x, U n) {
	T res = 1;
	while (n > 0) {
		if (n & 1) res = res * x;
		x = x * x;
		x %= mod_n;
		n >>= 1;
		res %= mod_n;
	}
	return res;
}

template<class T>
T mod_rev(T a) {
	T res = 1;
	return mod_pow(a, mod_n - 2);
}

int h, w;

bool grid_ng(int y, int x) {
	return y < 0 || y >= h || x < 0 || x >= w;
}

struct Point {
	int x, y;
	Point(int y_, int x_) : y(y_), x(x_) {}
	bool operator < (const Point& r) const {
		if (y != r.y) return y < r.y;
		return x < r.x;
	}
};

struct Vertex {
	int id, dist;
	bool operator > (const Vertex& r) const {
		return dist > r.dist;
	}
};

struct Edge {
	int to, weight;
	Edge(int to, int weight) : to(to), weight(weight) {}
};

using Graph = vector<vector<Edge>>;
Graph g;

int n;
string s;

class Solver {
public:
	int H, W;

	bool grid_ng(int y, int x) {
		return y < 0 || y >= H || x < 0 || x >= W;
	}

	struct Point {
		int x, y;
		bool operator < (const Point& r) const {
			if (y != r.y) return y < r.y;
			return x < r.x;
		}
	};

	struct Facility {
		string name;
		int productivity;
		int original_val;
		int num;
		int buying_val;
		int reinforce_val;
		int level;
	};

	struct Action {
		string name;
		int facility_id;
		double effi;
		bool yet_cannot_do;
	};

	int N;
	string S;
	int cookie = 200;
	int end_fever = 0;
	int cookie_per_click = 1;
	int enclick_buying_val = 15;
	vector<Facility> facilitys = {
		{ "hand", 1, 150, 0 },
		{ "lily", 10, 2000, 0 },
		{ "factory", 120, 30000, 0 },
		{ "casino", 2000, 600000, 0 },
		{ "grimoire", 25000, 10000000, 0 }
	};

	int ceiling_div(int p, int q) {
		int res = p / q;
		if (p % q != 0) res += 1;
		return res;
	}

	void enclick() {
		cout << "enhclick" << endl;
		if (cookie < enclick_buying_val) return;
		cookie -= enclick_buying_val;
		cookie_per_click *= 2;
		enclick_buying_val *= 10;
		throw exception();
	}

	Action best_buy(char special) {
		int per = (special == 'S' ? 90 : 100);
		int best_id = 0;
		double best_effi = 0;
		bool yet_cannot_do;
		rep(i, facilitys.size()) {
			auto& facility = facilitys[i];
			//if (cookie >= facility.buying_val * per / 100 + 1) {
			int buying_val = ceiling_div(facility.buying_val * per, 100);
			//if (cookie >= buying_val) {
				double effi = (double)facility.productivity / buying_val;
				if (effi > best_effi) {
					best_effi = effi;
					best_id = i;
					if (cookie >= buying_val) yet_cannot_do = false;
					else yet_cannot_do = true;
				}
			//}
		  
		}
		return { "buy", best_id, best_effi, yet_cannot_do};
	}

	void buy(char special, Action& action) {
		int per = (special == 'S' ? 90 : 100);
		auto& facility = facilitys[action.facility_id];
		int buying_val = ceiling_div(facility.buying_val * per, 100);
		cookie -= buying_val;
		facility.num += 1;
		facility.buying_val = ceiling_div(6 * facility.buying_val, 5);
	}

	Action best_reinforce(char special) {
		int per = (special == 'S' ? 90 : 100);
		int best_id = 0;
		double best_effi = 0;

		rep(i, facilitys.size()) {
			auto& facility = facilitys[i];
			//if (cookie >= facility.buying_val * per / 100 + 1) {
			int reinforce_val = ceiling_div(facility.reinforce_val * per, 100);
			if (cookie >= reinforce_val) {
				double effi = (double)facility.productivity * facility.num / reinforce_val;
				if (effi > best_effi) {
					best_effi = effi;
					best_id = i;
				}
			}
		}
		return { "reinforce", best_id, best_effi };
	}

	void output(string s) {
#ifndef LOCAL_ENV
		cout << s << endl;
#endif
	}

	void output(string s, string& s2) {
#ifndef LOCAL_ENV
		cout << s << " " << s2 << endl;
#endif
	}

	void reinforce(char special, Action& action) {
		int per = (special == 'S' ? 90 : 100);
		auto& facility = facilitys[action.facility_id];
		int reinforce_val = ceiling_div(facility.reinforce_val * per, 100);
		cookie -= reinforce_val;
		facility.productivity *= 2;
		facility.reinforce_val *= 10;
	}

	void sell() {
		for (auto& facility : facilitys) {
			if (facility.num != 0) {
				cout << "sell " << facility.name << endl;
				// output("sell", facility.name);
				facility.num = 0;
				throw exception();
			}
		}
	}

	void act(char special, Action& action) {
		if (action.name == "buy") buy(special, action);
		if (action.name == "reinforce") reinforce(special, action);
		//cout << action.name << " "
		//	<< facilitys[action.facility_id].name << endl;
		output(action.name, facilitys[action.facility_id].name);
		throw exception();
	}

	int facility_cnt() {
		int res = 0;
		for (auto& facility : facilitys) {
			res += (facility.num != 0);
		}
		return res;
	}

	void make_S() {
		S = "N"s * 10000;
		string specials = "BFS";
		for (auto& c : specials) {
			int cur = rand() % 200;
			S[cur] = c;
			while (true) {
				while (true) {
					int next = cur + 100 + rand() % 100;
					if (next >= S.size()) goto label1;
					if (S[next] == 'N') {
						cur = next;
						break;
					}
					else continue;
				}
				S[cur] = c;
			}
		label1:;
		}
		dumpl(S);
	}

	void solve() {
		//rep(i, 5) cout << facility[i].buying_val / facility[i].productivity << endl;
		for (auto& facility : facilitys) {
			facility.buying_val = facility.original_val;
			facility.reinforce_val = facility.original_val * 10;
			facility.level = 1;
		}
		cin >> N;
#ifdef LOCAL_ENV
		make_S();
#else
		cin >> S;
#endif
		rep(i, N) {
			char special = 'N';
			if (0 <= i - 1 && i - 1 < S.size()) {
				special = S[i - 1];
			}
			int times = (i < end_fever ? 7 : 1);
			try {
				if (i == 0) enclick();
				if (i > N - facilitys.size()) sell();
				vector<Action> actions;
				actions.push_back({ "", 0, 0 });
				if (i + 2000 < N) {
					actions.push_back(best_buy(special));
					actions.push_back(best_reinforce(special));
					sort(all(actions), [](Action& l, Action& r) {return l.effi > r.effi; });
				}
				if (actions[0].effi == 0 || actions[0].yet_cannot_do == true) {
					output("click");
					cookie += cookie_per_click * times;
				}
				else {
					act(special, actions[0]);
				}
			}
			catch (exception & e) {};
			for (auto& facility : facilitys) {
				// dumpl(facility.productivity);
				// dumpl(facility.num);
				cookie += facility.productivity * facility.num * times;
			}

			// dumpl(special);
			if (special == 'B') {
				int p = cookie * 1;
				int q = 100;
				// dump(p); dumpl(q);
				cookie += p / q;
				if (p % q != 0) cookie += 1;
			}
			if (special == 'F') end_fever = i + 21;
			if (i % 100 == 0) dumpl(cookie);
#ifndef _MSC_VER
			string s; cin >> s;
#endif
		}
	}
};

signed main()
{
	srand((unsigned int)time(NULL));
	cout << fixed << setprecision(20);
	auto ptr = new Solver();
	ptr->solve();
	delete ptr;
	//while (true) {
	//	if (cin.eof() == true) break;
	//	auto ptr = new Solver();
	//	ptr->solve();
	//	delete ptr;
	//}
	return 0;
}
0