QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#327216#8242. V-DiagramYshanqianWA 77ms3956kbC++141.6kb2024-02-14 20:37:082024-02-14 20:37:09

Judging History

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

  • [2024-02-14 20:37:09]
  • 评测
  • 测评结果:WA
  • 用时:77ms
  • 内存:3956kb
  • [2024-02-14 20:37:08]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define pi acos(-1)
#define xx first
#define yy second
#define endl "\n"
#define lowbit(x) x & (-x)
#define int long long
#define ull unsigned long long
#define pb push_back
typedef pair<int, int> PII;
typedef pair<double, double> PDD;
#define LF(x) fixed << setprecision(x)
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (((a) < (b)) ? (a) : (b))
#define Yshanqian ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
const int N = 1e6 + 10, M = 1010, inf = 0x3f3f3f3f, mod = 1e9 + 7, P = 13331;
const double eps = 1e-8;
int n;
int a[N];
void solve()
{
    int pos = 0, s = 0;
    cin >> n;
    for (int i = 1; i <= n; i++)
        cin >> a[i], s += a[i];
    for (int i = 2; i <= n; i++)
    {
        if (a[i - 1] > a[i] && a[i + 1] > a[i])
        {
            pos = i;
            break;
        }
    }
    int pre = pos - 1;
    int suf = pos + 1;
    double ave = 1.0 * s / n;
    int sum = 0, cnt = 0;
    for (int i = 1; i < pre; i++)
    {
        if (a[i] >= ave)
            cnt++, sum += a[i];
    }
    for (int i = suf + 1; i <= n; i++)
    {
        if (a[i] >= ave)
            cnt++, sum += a[i];
    }
    for (int i = pre; i <= suf; i++)
    {
        sum += a[i];
        cnt++;
    }
    cout << LF(20);
    cout << 1.0 * sum / cnt << endl;
}
signed main()
{
    Yshanqian;
    int T;
    T = 1;
    cin >> T;
    for (int cases = 1; cases <= T; ++cases)
    {
        // cout<<"Case #"<<cases<<": ";
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
4
8 2 7 10
6
9 6 5 3 4 8

output:

6.75000000000000000000
5.83333333333333303727

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 77ms
memory: 3880kb

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.66666662693023681641
435670789.66666668653488159180
770302316.66666662693023681641
608562705.00000000000000000000
296293261.66666668653488159180
319149416.33333331346511840820
571816312.66666662693023681641
223646002.33333334326744079590
39407315.66666666418313980103
383253737.666666686534...

result:

ok 100000 numbers

Test #3:

score: -100
Wrong Answer
time: 26ms
memory: 3864kb

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.75000000000000000000
723754201.95652174949645996094
571868784.00000000000000000000
684353379.70454549789428710938
492876424.00000000000000000000
572337228.54545450210571289062
733951619.96666669845581054688
254833443.19999998807907104492
583294557.38888883590698242188
638929038.31250000000...

result:

wrong answer 2nd numbers differ - expected: '527118856.7555556', found: '723754201.9565217', error = '0.3730380'