QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#546293 | #8242. V-Diagram | Chugg | WA | 82ms | 3816kb | C++20 | 1.0kb | 2024-09-03 22:27:46 | 2024-09-03 22:27:46 |
Judging History
answer
#include <bits/stdc++.h>
void solve()
{
int n;
std::cin >> n;
std::vector<int> a(n);
std::vector<int64_t> pre(n + 1);
int pos = -1;
for (int i = 0; i < n; ++i) {
std::cin >> a[i];
pre[i + 1] = pre[i] + a[i];
}
double ans = (double)pre[n] / n;
int64_t suml = 0, sumr = 0;
for (int i = 1; i < n - 1; ++i) {
if (a[i] < a[i - 1] && a[i] < a[i + 1]) {
for (int j = 0; j <= i + 1; ++j) {
suml += a[j];
}
for (int j = i - 1; j < n; ++j) {
sumr += a[j];
}
ans = std::max<double>(ans, (double)suml / (i + 2));
ans = std::max<double>(ans, (double)suml / (n - i + 2));
break;
}
}
std::cout.setf(std::ios::fixed);
std::cout << std::setprecision(15) << ans << '\n';
}
int main()
{
std::cin.tie(nullptr)->std::ios::sync_with_stdio(false);
int t;
std::cin >> t;
while(t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3812kb
input:
2 4 8 2 7 10 6 9 6 5 3 4 8
output:
6.750000000000000 5.833333333333333
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 82ms
memory: 3816kb
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.666666626930237 435670789.666666686534882 770302316.666666626930237 608562705.000000000000000 296293261.666666686534882 319149416.333333313465118 571816312.666666626930237 223646002.333333343267441 39407315.666666664183140 383253737.666666686534882 734363638.666666626930237 779975824.33333...
result:
ok 100000 numbers
Test #3:
score: -100
Wrong Answer
time: 20ms
memory: 3796kb
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:
258668002.750000000000000 499947495.383720934391022 515272956.699999988079071 511519421.863013684749603 472025965.699999988079071 546154003.125000000000000 564764364.687500000000000 318541804.000000000000000 395528440.974358975887299 502458665.384615361690521 846326681.000000000000000 545405164.2666...
result:
wrong answer 2nd numbers differ - expected: '527118856.7555556', found: '499947495.3837209', error = '0.0515469'