QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#660810 | #8242. V-Diagram | Lavender_Field# | WA | 72ms | 10068kb | C++20 | 1.1kb | 2024-10-20 13:29:14 | 2024-10-20 13:29:16 |
Judging History
answer
#include <algorithm>
#include <iomanip>
#include <iostream>
#include <vector>
using LL = long long;
template<typename T>
void upd_max(T &a, T b) { if (a < b) a = b; }
constexpr int N = 3E5;
int a[N + 1];
LL l_s[N + 1];
int l_l[N + 1];
LL r_s[N + 1];
int r_l[N + 1];
void solve()
{
int n; std::cin >> n;
for (int i = 1; i <= n; ++i)
std::cin >> a[i];
for (int i = 1; i <= n; ++i)
if (i > 1 && a[i - 1] > a[i])
l_l[i] = l_l[i - 1] + 1,
l_s[i] = l_s[i - 1] + a[i];
else
l_l[i] = 1,
l_s[i] = a[i];
for (int i = n; i; --i)
if (i < n && a[i] < a[i + 1])
r_l[i] = r_l[i + 1] + 1,
r_s[i] = r_s[i + 1] + a[i];
else
r_l[i] = 1,
r_s[i] = a[i];
long double ans = 0;
for (int i = 1; i <= n; ++i)
if (l_l[i] > 1 && r_l[i] > 1)
upd_max(ans, static_cast<long double>(l_s[i] + r_s[i] - a[i]) / (l_l[i] + r_l[i] - 1));
std::cout << ans << "\n";
}
int main()
{
std::ios::sync_with_stdio(false), std::cin.tie(nullptr);
int t; std::cin >> t;
std::cout << std::fixed << std::setprecision(10);
while (t--) solve();
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 10012kb
input:
2 4 8 2 7 10 6 9 6 5 3 4 8
output:
6.7500000000 5.8333333333
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 72ms
memory: 9996kb
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.6666666667 435670789.6666666667 770302316.6666666667 608562705.0000000000 296293261.6666666667 319149416.3333333333 571816312.6666666667 223646002.3333333333 39407315.6666666667 383253737.6666666667 734363638.6666666667 779975824.3333333333 490276408.3333333333 574448414.0000000000 3379802...
result:
ok 100000 numbers
Test #3:
score: -100
Wrong Answer
time: 26ms
memory: 10068kb
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.7500000000 499947495.3837209302 495489050.3529411765 511519421.8630136986 472025965.7000000000 543693608.2500000000 543366581.5161290322 254833443.2000000000 395528440.9743589743 502458665.3846153846 564217787.3333333333 479468115.1182795699 466246020.2045454546 551500780.7727272727 537648...
result:
wrong answer 2nd numbers differ - expected: '527118856.7555556', found: '499947495.3837209', error = '0.0515469'