結果

問題 No.5018 Let's Make a Best-seller Book
ユーザー e869120
提出日時 2023-09-18 13:51:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 38 ms / 400 ms
コード長 1,879 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 72,284 KB
実行使用メモリ 24,396 KB
スコア 22,628
平均クエリ数 52.00
最終ジャッジ日時 2023-10-01 12:30:32
合計ジャッジ時間 8,681 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <algorithm>
using namespace std;

int T, N;
int Money;
int L[19];
int S[19], P[19], R[19];
int Prev_Ad;
double Expected_D[19], Sum_D[19], Cnt_D[19];

void Decide_L(int turn) {
	// 広告を打つ場合
	if (turn >= 6 && Money >= 1500000 && turn - Prev_Ad) {
		cout << "2 2" << endl;
		Prev_Ad = turn;
	}
	else {
		int NeedMoney = 0;
		for (int i = 1; i <= N; i++) {
			int Goal = 9.0 * pow(1.05, 1.0 * P[i]) * Expected_D[i] * pow(1.05, 1.0 * P[i]);
			Goal = max(1, Goal - R[i]);
			L[i] = Goal;
			NeedMoney += 500 * Goal;
		}
		if (NeedMoney > Money) {
			for (int i = 1; i <= N; i++) L[i] = (1LL * L[i] * Money / NeedMoney);
		}
		cout << 1;
		for (int i = 1; i <= N; i++) cout << " " << L[i];
		cout << endl;
	}
}

int main() {
	// 最初の入力
	cin >> T >> N >> Money;
	for (int i = 1; i <= N; i++) Expected_D[i] = 1.0;

	// インタラクティブ開始
	for (int t = 1; t <= T; t++) {
		// (あ) 行動を決める
		Decide_L(t);

		// (い) 売上部数などを入力する
		cin >> Money;
		for (int i = 1; i <= N; i++) cin >> S[i];
		for (int i = 1; i <= N; i++) cin >> P[i];
		for (int i = 1; i <= N; i++) cin >> R[i];

		// D の値を更新
		for (int i = 1; i <= N; i++) {
			if (S[i] == 0) continue;
			int moto_popular = P[i];
			if (10 * S[i] >= 3 * (S[i] + R[i])) moto_popular -= 1;
			if (10 * S[i] <  1 * (S[i] + R[i])) moto_popular += 1;
			double expected = (0.5 + S[i]) / (pow(1.0 * (S[i] + R[i]), 0.5) * pow(1.05, moto_popular));
			Sum_D[i] += expected;
			Cnt_D[i] += 1.0;
			Expected_D[i] = min(1.45, max(0.55, Sum_D[i] / Cnt_D[i]));
		}

		// デバッグ出力
		cerr << Money << endl;
		for (int i = 1; i <= N; i++) cerr << S[i] << " "; cerr << endl;
		for (int i = 1; i <= N; i++) cerr << P[i] << " "; cerr << endl;
		for (int i = 1; i <= N; i++) cerr << R[i] << " "; cerr << endl;
	}
	return 0;
}
0