結果
問題 | No.5018 Let's Make a Best-seller Book |
ユーザー | Shun_PI |
提出日時 | 2023-10-01 14:36:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,508 bytes |
コンパイル時間 | 2,954 ms |
コンパイル使用メモリ | 194,220 KB |
実行使用メモリ | 12,252 KB |
スコア | 0 |
最終ジャッジ日時 | 2023-10-01 14:36:52 |
合計ジャッジ時間 | 6,673 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge13 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
testcase_94 | -- | - |
testcase_95 | -- | - |
testcase_96 | -- | - |
testcase_97 | -- | - |
testcase_98 | -- | - |
testcase_99 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using lint = long long int; using P = pair<int, int>; using PL = pair<lint, lint>; #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++) #define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--) #define REP(i, n) FOR(i,0,n) #define IREP(i, n) IFOR(i,0,n) #define ALL(a) (a).begin(),(a).end() constexpr int MOD = 1000000007; constexpr lint B1 = 1532834020; constexpr lint M1 = 2147482409; constexpr lint B2 = 1388622299; constexpr lint M2 = 2147478017; constexpr int INF = 2147483647; void yes(bool expr) {cout << (expr ? "Yes" : "No") << "\n";} template<class T>void chmax(T &a, const T &b) { if (a<b) a=b; } template<class T>void chmin(T &a, const T &b) { if (b<a) a=b; } constexpr bool DEBUG = true; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int T, N, Money; cin >> T >> N; if(!DEBUG) cin >> Money; else Money = 2000000; vector<int> R(N), P(N); vector<double> D(N); if(DEBUG) REP(i, N) cin >> D[i]; vector<vector<double>> Z(T, vector<double>(N)); if(DEBUG) REP(i, T) REP(j, N) cin >> Z[i][j]; vector<double> weight(N); REP(i, N) weight[i] = 1.0 / N; int score = 0; REP(t, T) { /* cerr << t << endl; cerr << Money << endl; REP(i, N) cerr << R[i] << " "; cerr << endl; REP(i, N) cerr << P[i] << " "; cerr << endl; */ int mode = 1; vector<int> L(N); int x = 1; // 行動を決める int MODE_CHANGE_TURN = 60; double THRESHOLD_D = 0.5 + 0.7 * t / T; double THRESHOLD_Z = 0.75; int limL = Money / 500 / N; if(t < MODE_CHANGE_TURN) { REP(i, N) { int l = 3; int r = 1e9; while(r-l > 1) { int m = (l+r)/2; if(sqrt(m) * pow(1.05, P[i]) * THRESHOLD_D * THRESHOLD_Z >= 0.3 * m) l = m; else r = m; } L[i] = max(0, l - R[i]); chmin(L[i], limL); } } else { REP(i, N) if(P[i] < 0) weight[i] = 0; double weight_sum = 0; REP(i, N) weight_sum += weight[i]; REP(i, N) weight[i] /= weight_sum; REP(i, N) L[i] = Money / 500 * weight[i]; } REP(i, N) assert(L[i] >= 0); if(Money >= 5000000) { mode = 2; x = 4; } cout << mode << " "; if(mode == 1) { REP(i, N) cout << L[i] << (i!=N-1 ? " " : ""); REP(i, N) R[i] += L[i]; REP(i, N) Money -= 500 * L[i]; } else { cout << x; REP(i, N) P[i] = min(60, P[i] + x); Money -= 500000 * pow(2, x-1); } cout << "\n"; cout.flush(); assert(Money >= 0); vector<int> S(N); if(!DEBUG) { cin >> Money; if(Money == -1) { cerr << "Money is -1" << endl; return 0; } REP(i, N) cin >> S[i]; } //結果の受け取り REP(i, N) { int s = S[i]; if(DEBUG) s = min(R[i], (int)floor(sqrt(R[i]) * pow(1.05, P[i]) * D[i] * Z[t][i])); score += s; Money += 1000 * s; //double estimate_D = s / sqrt(R[i]) / pow(1.05, P[i]); //if(estimate_D > 1.0) weight[i] *= 1.0; //else weight[i] /= 1.0; if(R[i] > 0) { if(s >= 0.3 * R[i]) P[i] = min(60, P[i] + 1); else if(s <= 0.1 * R[i]) P[i] = max(-60, P[i] - 1); } R[i] -= s; } if(!DEBUG) { REP(i, N) cin >> P[i]; REP(i, N) cin >> R[i]; } } cerr << score/100 << endl; }