QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#659126#5667. Meeting Placesucup-team5234WA 104ms4028kbC++232.9kb2024-10-19 18:50:182024-10-19 18:50:19

Judging History

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

  • [2024-10-19 18:50:19]
  • 评测
  • 测评结果:WA
  • 用时:104ms
  • 内存:4028kb
  • [2024-10-19 18:50:18]
  • 提交

answer

#include "bits/stdc++.h"
using namespace std;
using ll = long long;
ll MOD = 1000000007;
ll INF = (1ll<<60);
using ld = long double;
#define rep(i,n) for(int i=0;i<n;i++)

#define dout(a) cout << fixed << setprecision(20) << a << endl;

ld dis(ld x, ld y) {
    return x*x + y*y;
}
static const ld eps = 1e-12;
tuple<ld, ld, ld> solve(vector<pair<ld, ld>> p){
    int n = p.size();
    ld x = 0, y = 0;
    rep(i, n) {
        x += p[i].first;
        y += p[i].second;
    }
    x /= ld(n);
    y /= ld(n);
    ld r = 0.994;
    ld d = 3e8;
    
    rep(_, 4400) {
        int id = -1;
        ld m = -1;
        rep(i, n) {
            ld ret = dis(x - p[i].first, y - p[i].second);
            if(ret > m) {
                m = ret;
                id = i;
            }
        }
        ld X = p[id].first - x;
        ld Y = p[id].second - y;
        m = sqrtl(m);
        X /= m;
        Y /= m;
        X *= d;
        Y *= d;
        x += X;
        y += Y;
        d *= r;
    }
    ld m = -eps;
    rep(i, n) {
        ld ret = dis(x - p[i].first, y - p[i].second);
        if(ret > m) {
            m = ret;
        }
    }
    return {sqrtl(m), x, y};
}

int main(){
    
    ll n,k,X;
    cin >> n >> k >> X;
    if(n == k){
        cout << 0.0 << endl;
        return 0;
    }

    vector<ld> x(n), y(n);
    rep(i,n){
        x[i] = X;
        X = X*233811181+1;
        X %= (1ll<<31)-1;
        y[i] = X;
        X = X*233811181+1;
        X %= (1ll<<31)-1;
    }

    ld ans = INF;
    int M = 12;
    if(n-k>M){
        ld sx, sy, sr;
        ld ep = 10.1;
        {
            vector<pair<ld, ld>> p;
            for(int j=0; j<n-k+1; j++) p.emplace_back(x[j], y[j]);
            auto[r, x, y] = solve(p);
            ans = min(ans, r);
            sx = x, sy = y, sr = r;

        }
        for(int i=1; i+n-k+1<=n; i++){
            ld R = sqrtl(dis(sx - x[i-1], sy - y[i-1]));
            ld R2 = sqrtl(dis(sx - x[i+n-k], sy - y[i+n-k]));
            if(R > sr - ep || R2 > sr){
                vector<pair<ld, ld>> p;
                for(int j=i; j<i+n-k+1; j++) p.emplace_back(x[j], y[j]);
                auto[a,b,c] = solve(p);
                ans = min(ans, a);
                sr = a;
                sx = b;
                sy = c;
            }
        }
    }else{
        vector<vector<ld>> dp(n+1, vector<ld>(M, 1e10));
        dp[0][0] = 0.0;
        for(int i=0;i<n; i++){
            for(int j=0;j<M;j++) dp[i+1][j] = min(dp[i][j], dp[i+1][j]);
            for(int j=1;j<M&&i+j<n;j++){
                vector<pair<ld, ld>> p;
                for(int k=i; k<=i+j; k++) p.emplace_back(x[k], y[k]);
                auto[r,a,b] = solve(p);
                for(int k=0; k+j<M;k++) dp[i+j+1][k+j] = min(dp[i+j+1][k+j], dp[i][k]+r);
            }
        }
        ans = dp[n][n-k];
    }
    dout(ans);

}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3720kb

input:

100 23 213

output:

1319350480.80168708052951842546

result:

ok found '1319350480.8016870', expected '1319350480.8007326', error '0.0000000'

Test #2:

score: 0
Accepted
time: 4ms
memory: 3792kb

input:

10 1 1060

output:

1042753143.34517344878986477852

result:

ok found '1042753143.3451735', expected '1042753143.3451676', error '0.0000000'

Test #3:

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

input:

10 10 2373

output:

0

result:

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

Test #4:

score: 0
Accepted
time: 4ms
memory: 3828kb

input:

10 2 3396

output:

1236610536.94787184626329690218

result:

ok found '1236610536.9478719', expected '1236610536.9469230', error '0.0000000'

Test #5:

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

input:

10 3 1998

output:

973790809.82244429719867184758

result:

ok found '973790809.8224443', expected '973790809.8224442', error '0.0000000'

Test #6:

score: 0
Accepted
time: 4ms
memory: 3776kb

input:

10 4 562

output:

910867389.90733978676144033670

result:

ok found '910867389.9073398', expected '910867389.9069330', error '0.0000000'

Test #7:

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

input:

10 5 6048

output:

818240814.71104569209273904562

result:

ok found '818240814.7110457', expected '818240814.7105150', error '0.0000000'

Test #8:

score: 0
Accepted
time: 4ms
memory: 3792kb

input:

10 6 2524

output:

500106979.34696844971040263772

result:

ok found '500106979.3469685', expected '500106979.3467762', error '0.0000000'

Test #9:

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

input:

10 7 5415

output:

559478971.43200588854961097240

result:

ok found '559478971.4320059', expected '559478971.4320059', error '0.0000000'

Test #10:

score: 0
Accepted
time: 4ms
memory: 3836kb

input:

10 8 1438

output:

500309745.46277575424755923450

result:

ok found '500309745.4627758', expected '500309745.4627700', error '0.0000000'

Test #11:

score: 0
Accepted
time: 4ms
memory: 3716kb

input:

10 9 3172

output:

162279748.87534517400490585715

result:

ok found '162279748.8753452', expected '162279748.8753452', error '0.0000000'

Test #12:

score: 0
Accepted
time: 1ms
memory: 3856kb

input:

100 1 8316

output:

1320052902.15229601343162357807

result:

ok found '1320052902.1522961', expected '1320052902.1522903', error '0.0000000'

Test #13:

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

input:

100 100 4179

output:

0

result:

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

Test #14:

score: 0
Accepted
time: 1ms
memory: 3792kb

input:

100 12 3405

output:

1329687126.13136974442750215530

result:

ok found '1329687126.1313698', expected '1329687126.1304548', error '0.0000000'

Test #15:

score: 0
Accepted
time: 2ms
memory: 3760kb

input:

100 16 8378

output:

1338056514.48426947323605418205

result:

ok found '1338056514.4842694', expected '1338056514.4842694', error '0.0000000'

Test #16:

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

input:

100 2 1858

output:

1310392496.14306690590456128120

result:

ok found '1310392496.1430669', expected '1310392496.1430581', error '0.0000000'

Test #17:

score: 0
Accepted
time: 1ms
memory: 3864kb

input:

100 25 4596

output:

1440464106.62292967212852090597

result:

ok found '1440464106.6229296', expected '1440464106.6229298', error '0.0000000'

Test #18:

score: 0
Accepted
time: 1ms
memory: 3744kb

input:

100 3 5633

output:

1399621082.61427368351723998785

result:

ok found '1399621082.6142738', expected '1399621082.6142738', error '0.0000000'

Test #19:

score: 0
Accepted
time: 3ms
memory: 3800kb

input:

100 32 7827

output:

1342073760.53247130976524204016

result:

ok found '1342073760.5324714', expected '1342073760.5322330', error '0.0000000'

Test #20:

score: 0
Accepted
time: 2ms
memory: 3796kb

input:

100 4 3693

output:

1339808706.71078696579206734896

result:

ok found '1339808706.7107871', expected '1339808706.7098689', error '0.0000000'

Test #21:

score: 0
Accepted
time: 2ms
memory: 3768kb

input:

100 5 2252

output:

1394874243.50570989551488310099

result:

ok found '1394874243.5057099', expected '1394874243.5057042', error '0.0000000'

Test #22:

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

input:

100 50 4254

output:

1322809748.40620701410807669163

result:

ok found '1322809748.4062071', expected '1322809748.4052832', error '0.0000000'

Test #23:

score: 0
Accepted
time: 1ms
memory: 3864kb

input:

100 6 53

output:

1364441356.17027627129573374987

result:

ok found '1364441356.1702762', expected '1364441356.1700988', error '0.0000000'

Test #24:

score: 0
Accepted
time: 4ms
memory: 3824kb

input:

100 64 4337

output:

1180754550.24327695358078926802

result:

ok found '1180754550.2432768', expected '1180754550.2422838', error '0.0000000'

Test #25:

score: 0
Accepted
time: 1ms
memory: 3712kb

input:

100 7 5366

output:

1423557626.35876209789421409369

result:

ok found '1423557626.3587620', expected '1423557626.3586798', error '0.0000000'

Test #26:

score: 0
Accepted
time: 1ms
memory: 3732kb

input:

100 8 8509

output:

1353289305.35200586880091577768

result:

ok found '1353289305.3520060', expected '1353289305.3519957', error '0.0000000'

Test #27:

score: 0
Accepted
time: 3ms
memory: 3844kb

input:

100 9 1423

output:

1228887266.56677599111571907997

result:

ok found '1228887266.5667760', expected '1228887266.5661671', error '0.0000000'

Test #28:

score: 0
Accepted
time: 103ms
memory: 3804kb

input:

100 91 4806

output:

656574218.50877499394118785858

result:

ok found '656574218.5087750', expected '656574218.5086756', error '0.0000000'

Test #29:

score: 0
Accepted
time: 103ms
memory: 3860kb

input:

100 92 4024

output:

794693428.61637779400916770101

result:

ok found '794693428.6163778', expected '794693428.6162238', error '0.0000000'

Test #30:

score: 0
Accepted
time: 104ms
memory: 3800kb

input:

100 93 606

output:

677641787.48693158186506479979

result:

ok found '677641787.4869316', expected '677641787.4863122', error '0.0000000'

Test #31:

score: 0
Accepted
time: 103ms
memory: 3816kb

input:

100 94 7265

output:

686423239.26260853122221305966

result:

ok found '686423239.2626085', expected '686423239.2626028', error '0.0000000'

Test #32:

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

input:

100 95 8469

output:

328187125.92359513862174935639

result:

ok found '328187125.9235951', expected '328187125.9235951', error '0.0000000'

Test #33:

score: 0
Accepted
time: 103ms
memory: 3760kb

input:

100 96 1079

output:

492964787.62626934653962962329

result:

ok found '492964787.6262693', expected '492964787.6259086', error '0.0000000'

Test #34:

score: 0
Accepted
time: 104ms
memory: 3876kb

input:

100 97 5453

output:

258652807.79109116819745395333

result:

ok found '258652807.7910912', expected '258652807.7906564', error '0.0000000'

Test #35:

score: 0
Accepted
time: 103ms
memory: 3868kb

input:

100 98 1778

output:

159490192.11953879657085053623

result:

ok found '159490192.1195388', expected '159490192.1188908', error '0.0000000'

Test #36:

score: 0
Accepted
time: 104ms
memory: 3924kb

input:

100 99 1825

output:

33793756.32899804247063002549

result:

ok found '33793756.3289980', expected '33793756.3289980', error '0.0000000'

Test #37:

score: 0
Accepted
time: 4ms
memory: 4028kb

input:

1000 1 2453

output:

1486878333.28585741471033543348

result:

ok found '1486878333.2858574', expected '1486878333.2858574', error '0.0000000'

Test #38:

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

input:

1000 1000 1798

output:

0

result:

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

Test #39:

score: 0
Accepted
time: 7ms
memory: 3908kb

input:

1000 125 43

output:

1474031969.51838063902687281370

result:

ok found '1474031969.5183806', expected '1474031969.5174232', error '0.0000000'

Test #40:

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

input:

1000 128 8107

output:

1440375848.30294555157888680696

result:

ok found '1440375848.3029456', expected '1440374614.9391975', error '0.0000009'

Test #41:

score: -100
Wrong Answer
time: 8ms
memory: 3908kb

input:

1000 15 6639

output:

1491339056.81524031597655266523

result:

wrong answer 1st numbers differ - expected: '1491336935.5536251', found: '1491339056.8152404', error = '0.0000014'