結果
問題 | No.2158 X日後に全完するhibit君 |
ユーザー | 👑 rin204 |
提出日時 | 2022-12-09 22:20:06 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 2,277 bytes |
コンパイル時間 | 2,442 ms |
コンパイル使用メモリ | 213,540 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 22:16:53 |
合計ジャッジ時間 | 3,388 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; // #define endl '\n' const ll MOD = 998244353; int main(){ cin.tie(0)->sync_with_stdio(0); cout << fixed << setprecision(12); int n, k; cin >> n >> k; int stot = 0, ttot = 0; vector<int> P(n), S(n), T(n); for(int i = 0; i < n; i++){ cin >> P[i] >> S[i] >> T[i]; stot += S[i]; ttot += T[i]; } if(stot <= 60){ cout << "1 1 1" << endl; return 0; } else if(ttot > 60){ cout << -1 << endl; return 0; } auto f=[&](vector<int> A){ int ret = 0; for(auto a:A) ret = ret * 6 + a; return ret; }; auto g=[&](int x){ vector<int> ret(n); for(int i = n - 1; i >= 0; i--){ ret[i] = x % 6; x /= 6; } return ret; }; int mi = 1 << 30; int ma = 0; long double ave = 0; map<int, long double> PP; vector<int> V(n, k); PP[f(V)] = 1.0; int day = k + 1; while(!PP.empty()){ map<int, long double> NP; for(auto tmp:PP){ auto A = g(tmp.first); long double p = tmp.second; for(auto bit = 0; bit < (1 << n); bit++){ long double pp = p; int time = 0; for(int i = 0; i < n; i++){ if(bit >> i & 1){ time += T[i]; pp *= (long double)(A[i] - k) / (long double)(P[i] - k); } else{ time += S[i]; pp *= (long double)(P[i] - k - (A[i] - k)) / (long double)(P[i] - k); A[i]++; } } if(pp != 0){ if(time <= 60){ mi = min(mi, day); ave += (long double) day * pp; } else NP[f(A)] += pp; } for(int i = 0; i < n; i++){ if(!(bit >> i & 1)) A[i]--; } } } PP.swap(NP); ma = max(ma, day); day++; } cout << mi << " " << ma << " " << ave << endl; return 0; }