QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#637686#8242. V-DiagramMoemi_WA 181ms3872kbC++201.5kb2024-10-13 13:47:462024-10-13 13:47:47

Judging History

你现在查看的是最新测评结果

  • [2024-10-13 13:47:47]
  • 评测
  • 测评结果:WA
  • 用时:181ms
  • 内存:3872kb
  • [2024-10-13 13:47:46]
  • 提交

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(l + 1 < pos && sum >= a[l] * num) sum -= a[l], l ++, num --;
    while(r - 1 > pos && sum >= a[r] * num) sum -= a[r], r --, num --;
    // cout << pos << " " << l << " " << r << " " << sum << endl;
    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();
    }
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3872kb

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: 181ms
memory: 3740kb

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: 82ms
memory: 3768kb

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'