結果
問題 | No.21 平均の差 |
ユーザー | traindoggo |
提出日時 | 2024-02-05 07:03:50 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 206 ms / 5,000 ms |
コード長 | 1,714 bytes |
コンパイル時間 | 2,396 ms |
コンパイル使用メモリ | 205,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-28 11:31:23 |
合計ジャッジ時間 | 3,662 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef DEBUG_ #include <compe/debug.hpp> #else #define dump(...) #endif #define FastIO cin.tie(nullptr), ios_base::sync_with_stdio(false); #define rep(i, n) for (int i = 0; i < (int)(n); ++i) #define output(msg) cout << (msg) << '\n' #define die(msg) \ do { \ cout << msg << endl; \ exit(0); \ } while (0) #define all(k) k.begin(), k.end() #define INFi 1 << 30 #define INFll 1LL << 60 template <typename T> bool chmax(T& a, const T& b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> bool chmin(T& a, const T& b) { return ((a > b) ? (a = b, true) : false); } using llint = long long int; int main() { FastIO; int n, k; cin >> n >> k; vector<int> ps(n); rep(i, n) cin >> ps[i]; sort(all(ps)); double ans{0}; do { for (int a = 0; a < n; ++a) { for (int b = a + 1; b < n; ++b) { for (int c = b + 1; c < n; ++c) { int low{}, mid{}, high{}; for (int t = 0; t <= a; ++t) { low += ps[t]; } for (int t = a + 1; t <= b; ++t) { mid += ps[t]; } for (int t = b + 1; t <= c; ++t) { high += ps[t]; } int cnt = (a + 1) + (b - a) + (c - b); if (cnt == k) { double ave_a = (double)low / (a + 1); double ave_b = (double)mid / (b - a); double ave_c = (double)high / (c - b); double diff = max(ave_a, max(ave_b, ave_c)) - min(ave_a, min(ave_b, ave_c)); chmax(ans, diff); } } } } } while (next_permutation(all(ps))); output(ans); }