QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#405675 | #8242. V-Diagram | Nafeeszx# | WA | 77ms | 4016kb | C++17 | 885b | 2024-05-06 12:09:24 | 2024-05-06 12:09:26 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define PB push_back
#define endl '\n'
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef vector<pii> vpii;
typedef vector<ll> vll;
typedef long double ld;
void solve(int tt) {
int n;
cin >> n;
vll a(n+1);
vll c(n+1);
for (int i = 1; i <= n; ++i) {
cin >> a[i];
c[i] = c[i-1] + a[i];
}
ld ans = c[n] / (ld)n;
for (int i = 2; i < n; ++i) {
if (a[i] < a[i+1]) {
ans = max(ans, c[i+1] / (ld)(i+1));
ans = max(ans, (c[n] - c[i-2]) / (ld)(n - (i-2)));
}
}
cout << fixed << setprecision(12) << ans << endl;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int tc = 1;
cin >> tc;
for (int i = 1; i <= tc; ++i) {
solve(i);
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3752kb
input:
2 4 8 2 7 10 6 9 6 5 3 4 8
output:
6.750000000000 5.833333333333
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 77ms
memory: 3852kb
input:
100000 3 948511478 739365502 813471668 3 881046825 27458122 398507422 3 987554257 399092415 924260278 3 984128569 125199021 716360525 3 529589236 45783262 313507287 3 645443456 85994112 226010681 3 914820717 228360911 572267310 3 418958362 56703604 195276041 3 64461646 26764720 26995581 3 914535039 ...
output:
833782882.666666666686 435670789.666666666657 770302316.666666666686 608562705.000000000000 296293261.666666666657 319149416.333333333343 571816312.666666666686 223646002.333333333328 39407315.666666666668 383253737.666666666657 734363638.666666666686 779975824.333333333314 490276408.333333333343 57...
result:
ok 100000 numbers
Test #3:
score: -100
Wrong Answer
time: 26ms
memory: 4016kb
input:
10000 4 194123849 79274911 191162487 570110764 86 957917218 915359202 914726017 873273226 867724859 867674150 809652204 805531383 745262007 743835491 727071232 714782071 645394643 639432679 594879540 587173904 583418126 560538589 518721836 469558994 427721766 411582333 404948350 402948978 357228675 ...
output:
280182720.666666666657 971673720.333333333314 729761539.666666666686 963950546.333333333314 630796860.333333333314 642159163.000000000000 964329404.000000000000 254833443.199999999997 870415123.666666666686 908181856.666666666686 564217787.333333333314 962191105.666666666686 959669045.333333333314 9...
result:
wrong answer 1st numbers differ - expected: '258668002.7500000', found: '280182720.6666667', error = '0.0831750'