QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#638304 | #8242. V-Diagram | Moemi_ | WA | 143ms | 4052kb | C++20 | 1.6kb | 2024-10-13 15:36:33 | 2024-10-13 15:36:36 |
Judging History
answer
#include <iostream>
#include <cstring>
#include <algorithm>
#include <map>
#include <vector>
#include <set>
#include <queue>
#include <cmath>
#include <stack>
#include <cstring>
#include <iomanip>
#include <unordered_map>
#include <numeric>
#define sc_int(x) scanf("%d", &x)
#define x first
#define y second
#define pb push_back
using namespace std;
const int N = 510, M = 2e5 + 10, MOD = 1e9 + 7;
const int inf = 1e9;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> PII;
typedef pair<string, int> PSI;
typedef pair<LL, LL> PLL;
typedef pair<double, double> PDD;
typedef pair<char, int> PCI;
typedef pair<string, string> PSS;
int n, m;
void solve()
{
cin >> n;
vector<LL> a(n + 1);
LL sum = 0;
for(int i = 1; i <= n; i ++) cin >> a[i], sum += a[i];
int pos = 0;
for(int i = 1; i <= n; i ++)
{
if(a[i] < a[i + 1])
{
pos = i;
break;
}
}
LL num = n;
int l = 1;
int r = n;
while(1)
{
bool flag = false;
while(l + 1 < pos && sum > a[l] * num) sum -= a[l], l ++, num --, flag = true;
while(r - 1 < pos && sum > a[r] * num) sum -= a[r], r --, num --, flag = true;
if(!flag) break;
}
printf("%.15lf\n", 1.0 * sum / num);
}
int main()
{
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
// ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
int T = 1;
cin >> T;
while(T --)
{
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3880kb
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: 143ms
memory: 4052kb
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: 81ms
memory: 3972kb
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 495489050.352941155433655 511519421.863013684749603 472025965.699999988079071 543693608.250000000000000 543366581.516129016876221 254833443.199999988079071 395528440.974358975887299 502458665.384615361690521 564217787.333333373069763 479468115.1182...
result:
wrong answer 2nd numbers differ - expected: '527118856.7555556', found: '499947495.3837209', error = '0.0515469'