QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#614014#8524. Weather ForecastTecy#WA 1ms4020kbC++201.3kb2024-10-05 15:20:372024-10-05 15:21:32

Judging History

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

  • [2024-10-05 15:21:32]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:4020kb
  • [2024-10-05 15:20:37]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using i64 = int64_t;

constexpr double eps = 1e-6;

void solve() {
    i64 n, k;
    cin >> n >> k;
    vector<i64> a(n + 1);
    for (int i = 1; i <= n; i++) {
        cin >> a[i];   
    }

    auto check = [&](double x) -> bool {
        set<double> st;
        st.insert(0);
        unordered_map<double, int> pos;
        pos[0] = 0;
        vector<int> f(n + 1);
        vector<double> b(n + 1);
        for (int i = 1; i <= n; i++) {
            b[i] = a[i] - x;
            b[i] += b[i - 1];
            auto p = st.upper_bound(b[i]);
            if (p != st.begin()) {
                f[i] = f[pos[*prev(p)]] + 1;
                st.insert(b[i]);
                pos[b[i]] = i;
            }
        }
        return f[n] >= k;
    };

    double l = 1;
    double r = *max_element(a.begin() + 1, a.end());
    double ans = 1;
    while (r - l > eps) {
        double m = (l + r) / 2;
        if (check(m)) {
            ans = max(ans, m);
            l = m;
        } else {
            r = m;
        }
    }

    cout << fixed << setprecision(15) << ans;
}

int main() {
    ios::sync_with_stdio(false);
    cout.tie(0);
    cin.tie(0);

    int T = 1;
    // cin >> T;
    for (int i = 1; i <= T; i++) {
        solve();
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3952kb

input:

7 3
1 3 1 2 2 2 1

output:

1.666666030883789

result:

ok found '1.66667', expected '1.66667', error '0.00000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3884kb

input:

1 1
1

output:

1.000000000000000

result:

ok found '1.00000', expected '1.00000', error '0.00000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

2 1
2 1

output:

1.500000000000000

result:

ok found '1.50000', expected '1.50000', error '0.00000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

3 2
2 4 4

output:

2.999999523162842

result:

ok found '3.00000', expected '3.00000', error '0.00000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

4 2
6 7 3 12

output:

6.500000000000000

result:

ok found '6.50000', expected '6.50000', error '0.00000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3912kb

input:

5 3
17 23 13 12 21

output:

16.499999642372131

result:

ok found '16.50000', expected '16.50000', error '0.00000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 4020kb

input:

7 4
3 37 46 23 46 6 31

output:

22.999999359250069

result:

ok found '23.00000', expected '23.00000', error '0.00000'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3948kb

input:

10 5
30 91 36 53 74 91 37 1 76 3

output:

39.499999716877937

result:

ok found '39.50000', expected '39.50000', error '0.00000'

Test #9:

score: -100
Wrong Answer
time: 0ms
memory: 3740kb

input:

100 50
593 336 577 842 505 78 665 825 990 895 952 782 721 242 421 951 786 994 238 154 356 483 686 143 220 473 920 353 738 690 96 915 913 157 412 882 465 585 963 635 68 72 901 143 50 558 310 504 987 97 588 987 841 829 780 497 758 909 503 585 91 657 912 870 663 606 748 492 175 92 375 768 773 206 676 8...

output:

438.749999361112714

result:

wrong answer 1st numbers differ - expected: '483.00000', found: '438.75000', error = '44.25000'