QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#470416#6401. Classic: N Real DNA PotsUESTC_OldEastWest#WA 12ms5968kbC++201.6kb2024-07-10 13:05:572024-07-10 13:05:57

Judging History

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

  • [2024-07-10 13:05:57]
  • 评测
  • 测评结果:WA
  • 用时:12ms
  • 内存:5968kb
  • [2024-07-10 13:05:57]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int M = 1e5 + 5;
const double eps = 1e-7;
int n, k;
struct P {
    int x, y;
}a[M];

struct BIT {
    int s[M];
    inline void clear(int n = 1e5 + 5) {
        memset(s, 0,sizeof(int) * n);
    }
    #define lowbit(x) (x & -x)
    inline void add(int pos, int x) {
        for (; pos <= n; pos += lowbit(pos)) s[pos] = max(s[pos], x);
    }
    inline int ask(int pos) {
        int ans = -1;
        for (; pos; pos -= lowbit(pos)) ans = max(ans, s[pos]);
        return ans;
    }
    #undef lowbit
}ss;

inline bool check(long double mid) {
    vector<long double>v;
    vector<int>val;
    for (int i = 1; i <= n; i++) {
        v.push_back(a[i].y - a[i].x * mid);
    }   
    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());
    ss.clear(n + 5);
    int mx = 1;
    for (int i = 1; i <= n; i++) {
        int pos = lower_bound(v.begin(), v.end(), a[i].y - a[i].x * mid - eps) - v.begin() + 1;
        int now = ss.ask(pos) + 1;
        // cout << pos << " " << now << endl;
        ss.add(pos, now);
        mx = max(mx, now);
    }
    return mx >= k;
}


signed main() {
    ios::sync_with_stdio(0);
    cin >> n >> k;
    for (int i = 1; i <= n; i++) {
        cin >> a[i].x >> a[i].y;
    }
    long double l = -1e9, r = 1e9, mid, ans = -114514;
    for (int t = 1; t <= 100; t++){
        mid = (l + r) / 2;
        if (check(mid)) ans = mid, l = mid;
        else r = mid;
    }
    cout << ans << endl;
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4 3
1 2
2 4
3 3
4 1

output:

-1

result:

ok found '-1.0000000', expected '-1.0000000', error '-0.0000000'

Test #2:

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

input:

2 2
1 1
5 3

output:

0.5

result:

ok found '0.5000000', expected '0.5000000', error '0.0000000'

Test #3:

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

input:

2 2
222640995 547139825
489207317 725361095

output:

0.668581

result:

ok found '0.6685810', expected '0.6685813', error '0.0000003'

Test #4:

score: 0
Accepted
time: 11ms
memory: 3848kb

input:

1000 20
545612 774435015
828317 212155588
5294705 85926095
5648835 764528941
6159263 570820268
7177330 744079287
8446124 162286636
8735551 586528841
9263030 524140841
9505706 636254627
12111352 182639083
12750780 238494418
13149143 913232250
13382784 11485121
13699797 414697815
14263990 423817548
15...

output:

3.79321

result:

ok found '3.7932100', expected '3.7932105', error '0.0000001'

Test #5:

score: -100
Wrong Answer
time: 12ms
memory: 5968kb

input:

1000 100
163505 684865289
2674260 837752883
2694530 150054425
2870791 236723512
3262597 800933455
3558503 905056977
4260872 45990808
4532415 268478572
5299228 546172100
6019224 12074540
6345109 747272172
6539452 449655551
7215852 676269961
9062989 769545718
9444242 874911191
10264016 341805234
10595...

output:

-1.86058

result:

wrong answer 1st numbers differ - expected: '-1.8605779', found: '-1.8605800', error = '0.0000011'