QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#659137#5667. Meeting Placesucup-team5234WA 1703ms4340kbC++232.9kb2024-10-19 18:53:282024-10-19 18:53:29

Judging History

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

  • [2024-10-19 18:53:29]
  • 评测
  • 测评结果:WA
  • 用时:1703ms
  • 内存:4340kb
  • [2024-10-19 18:53:28]
  • 提交

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.995;
    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 = 10;
    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);

}

详细

Test #1:

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

input:

100 23 213

output:

1319350480.87991965876426547766

result:

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

Test #2:

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

input:

10 1 1060

output:

1042753143.34556755272205919027

result:

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

Test #3:

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

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: 3840kb

input:

10 2 3396

output:

1236610537.02611023338977247477

result:

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

Test #5:

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

input:

10 3 1998

output:

973790809.82244430878199636936

result:

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

Test #6:

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

input:

10 4 562

output:

910867389.92570631369017064571

result:

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

Test #7:

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

input:

10 5 6048

output:

818240814.74196000170195475221

result:

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

Test #8:

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

input:

10 6 2524

output:

500106979.38462177012115716934

result:

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

Test #9:

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

input:

10 7 5415

output:

559478971.43240583455190062523

result:

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

Test #10:

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

input:

10 8 1438

output:

500309745.46316587179899215698

result:

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

Test #11:

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

input:

10 9 3172

output:

162279748.87534517694439273328

result:

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

Test #12:

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

input:

100 1 8316

output:

1320052902.15268613072112202644

result:

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

Test #13:

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

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: 3964kb

input:

100 12 3405

output:

1329687126.17351430642884224653

result:

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

Test #15:

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

input:

100 16 8378

output:

1338056514.48427341796923428774

result:

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

Test #16:

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

input:

100 2 1858

output:

1310392496.21653909608721733093

result:

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

Test #17:

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

input:

100 25 4596

output:

1440464106.62332953489385545254

result:

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

Test #18:

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

input:

100 3 5633

output:

1399621082.61427763011306524277

result:

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

Test #19:

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

input:

100 32 7827

output:

1342073760.56945041357539594173

result:

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

Test #20:

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

input:

100 4 3693

output:

1339808706.77647062938194721937

result:

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

Test #21:

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

input:

100 5 2252

output:

1394874243.50570823182351887226

result:

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

Test #22:

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

input:

100 50 4254

output:

1322809748.41060068504884839058

result:

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

Test #23:

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

input:

100 6 53

output:

1364441356.19424923206679522991

result:

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

Test #24:

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

input:

100 64 4337

output:

1180754550.24568836996331810951

result:

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

Test #25:

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

input:

100 7 5366

output:

1423557626.36666435841470956802

result:

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

Test #26:

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

input:

100 8 8509

output:

1353289305.43148078897502273321

result:

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

Test #27:

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

input:

100 9 1423

output:

1228887266.60651381930802017450

result:

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

Test #28:

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

input:

100 91 4806

output:

656574218.51877335237804800272

result:

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

Test #29:

score: 0
Accepted
time: 81ms
memory: 3980kb

input:

100 92 4024

output:

794693428.62063777295406907797

result:

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

Test #30:

score: 0
Accepted
time: 81ms
memory: 3928kb

input:

100 93 606

output:

677641787.52120037999702617526

result:

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

Test #31:

score: 0
Accepted
time: 82ms
memory: 3892kb

input:

100 94 7265

output:

686423239.26260278280824422836

result:

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

Test #32:

score: 0
Accepted
time: 81ms
memory: 3972kb

input:

100 95 8469

output:

328187125.92399094652500934899

result:

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

Test #33:

score: 0
Accepted
time: 82ms
memory: 3904kb

input:

100 96 1079

output:

492964787.64838378995773382485

result:

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

Test #34:

score: 0
Accepted
time: 81ms
memory: 3976kb

input:

100 97 5453

output:

258652807.79633884356007911265

result:

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

Test #35:

score: 0
Accepted
time: 81ms
memory: 3976kb

input:

100 98 1778

output:

159490192.14242467805161140859

result:

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

Test #36:

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

input:

100 99 1825

output:

33793756.32899804570843116380

result:

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

Test #37:

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

input:

1000 1 2453

output:

1486878333.28585749468766152859

result:

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

Test #38:

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

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: 3992kb

input:

1000 125 43

output:

1474031969.59793491766322404146

result:

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

Test #40:

score: 0
Accepted
time: 22ms
memory: 4048kb

input:

1000 128 8107

output:

1440374735.51493251312058418989

result:

ok found '1440374735.5149324', expected '1440374614.9391975', error '0.0000001'

Test #41:

score: 0
Accepted
time: 8ms
memory: 4080kb

input:

1000 15 6639

output:

1491337584.72207010141573846340

result:

ok found '1491337584.7220702', expected '1491336935.5536251', error '0.0000004'

Test #42:

score: 0
Accepted
time: 6ms
memory: 3984kb

input:

1000 16 1251

output:

1445211807.11610040126834064722

result:

ok found '1445211807.1161003', expected '1445211807.1160963', error '0.0000000'

Test #43:

score: 0
Accepted
time: 8ms
memory: 3980kb

input:

1000 2 1303

output:

1468989868.64860620978288352489

result:

ok found '1468989868.6486063', expected '1468989868.6486022', error '0.0000000'

Test #44:

score: 0
Accepted
time: 6ms
memory: 3960kb

input:

1000 250 4457

output:

1487674970.76685340993572026491

result:

ok found '1487674970.7668533', expected '1487674970.7660158', error '0.0000000'

Test #45:

score: 0
Accepted
time: 20ms
memory: 3888kb

input:

1000 256 4135

output:

1474218271.51447717240080237389

result:

ok found '1474218271.5144773', expected '1474218271.5140772', error '0.0000000'

Test #46:

score: 0
Accepted
time: 8ms
memory: 4004kb

input:

1000 3 713

output:

1482496228.99082448065746575594

result:

ok found '1482496228.9908245', expected '1482496228.9904778', error '0.0000000'

Test #47:

score: 0
Accepted
time: 8ms
memory: 3976kb

input:

1000 31 8139

output:

1494361943.47991949238348752260

result:

ok found '1494361943.4799194', expected '1494361943.4799194', error '0.0000000'

Test #48:

score: 0
Accepted
time: 8ms
memory: 3980kb

input:

1000 32 7916

output:

1499333171.09386872965842485428

result:

ok found '1499333171.0938687', expected '1499333171.0938647', error '0.0000000'

Test #49:

score: 0
Accepted
time: 9ms
memory: 4004kb

input:

1000 4 2432

output:

1455826569.04282565834000706673

result:

ok found '1455826569.0428257', expected '1455826569.0394101', error '0.0000000'

Test #50:

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

input:

1000 5 2457

output:

1452189628.19711392757017165422

result:

ok found '1452189628.1971140', expected '1452189628.1967139', error '0.0000000'

Test #51:

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

input:

1000 500 8734

output:

1432279300.56635645253118127584

result:

ok found '1432279300.5663564', expected '1432279300.5662787', error '0.0000000'

Test #52:

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

input:

1000 512 1866

output:

1446804508.03599126625340431929

result:

ok found '1446804508.0359912', expected '1446804508.0351865', error '0.0000000'

Test #53:

score: 0
Accepted
time: 6ms
memory: 3980kb

input:

1000 6 1580

output:

1490178756.85699943383224308491

result:

ok found '1490178756.8569994', expected '1490178756.8566034', error '0.0000000'

Test #54:

score: 0
Accepted
time: 5ms
memory: 3968kb

input:

1000 62 3047

output:

1482100829.64709969901014119387

result:

ok found '1482100829.6470997', expected '1482100829.6467109', error '0.0000000'

Test #55:

score: 0
Accepted
time: 8ms
memory: 3928kb

input:

1000 64 4836

output:

1441850815.85536537785083055496

result:

ok found '1441850815.8553653', expected '1441850815.8553615', error '0.0000000'

Test #56:

score: 0
Accepted
time: 9ms
memory: 3900kb

input:

1000 7 5269

output:

1473104490.73093153815716505051

result:

ok found '1473104490.7309315', expected '1473104490.7287984', error '0.0000000'

Test #57:

score: 0
Accepted
time: 5ms
memory: 3976kb

input:

1000 8 2649

output:

1459133296.60662739735562354326

result:

ok found '1459133296.6066275', expected '1459133296.6066234', error '0.0000000'

Test #58:

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

input:

1000 9 3999

output:

1482914523.46168160473462194204

result:

ok found '1482914523.4616816', expected '1482914523.3807039', error '0.0000000'

Test #59:

score: 0
Accepted
time: 851ms
memory: 4184kb

input:

1000 991 3610

output:

295501032.47848332594730891287

result:

ok found '295501032.4784833', expected '295501032.4780874', error '0.0000000'

Test #60:

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

input:

1000 992 3030

output:

337274092.65403821296058595181

result:

ok found '337274092.6540382', expected '337274092.6540381', error '0.0000000'

Test #61:

score: 0
Accepted
time: 852ms
memory: 4104kb

input:

1000 993 6980

output:

222375113.10579863299790304154

result:

ok found '222375113.1057986', expected '222375113.1057986', error '0.0000000'

Test #62:

score: 0
Accepted
time: 852ms
memory: 4104kb

input:

1000 994 7222

output:

218007091.69330410716065671295

result:

ok found '218007091.6933041', expected '218007091.6933041', error '0.0000000'

Test #63:

score: 0
Accepted
time: 851ms
memory: 3928kb

input:

1000 995 1323

output:

169577520.22365288980654440820

result:

ok found '169577520.2236529', expected '169577520.2236529', error '0.0000000'

Test #64:

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

input:

1000 996 2761

output:

135524743.95801804809889290482

result:

ok found '135524743.9580180', expected '135524743.9114488', error '0.0000000'

Test #65:

score: 0
Accepted
time: 851ms
memory: 4112kb

input:

1000 997 4946

output:

87043806.42279209817206719890

result:

ok found '87043806.4227921', expected '87043806.4227921', error '0.0000000'

Test #66:

score: 0
Accepted
time: 851ms
memory: 4104kb

input:

1000 998 842

output:

24094936.55119169441786652897

result:

ok found '24094936.5511917', expected '24094936.5511917', error '0.0000000'

Test #67:

score: 0
Accepted
time: 850ms
memory: 3976kb

input:

1000 999 5078

output:

4597519.06465503728077237611

result:

ok found '4597519.0646550', expected '4597519.0646550', error '0.0000000'

Test #68:

score: 0
Accepted
time: 16ms
memory: 4076kb

input:

2000 1 2633

output:

1502350354.49953101552091538906

result:

ok found '1502350354.4995310', expected '1502350354.4995270', error '0.0000000'

Test #69:

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

input:

2000 1000 6248

output:

1469507775.09439598489552736282

result:

ok found '1469507775.0943959', expected '1469507093.4042110', error '0.0000005'

Test #70:

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

input:

2000 1024 2507

output:

1448066815.32358504459261894226

result:

ok found '1448066815.3235850', expected '1448066815.3184788', error '0.0000000'

Test #71:

score: 0
Accepted
time: 16ms
memory: 3936kb

input:

2000 125 3002

output:

1476846542.03323212696705013514

result:

ok found '1476846542.0332322', expected '1476846542.0318909', error '0.0000000'

Test #72:

score: 0
Accepted
time: 31ms
memory: 4008kb

input:

2000 128 5622

output:

1464957942.71994251187425106764

result:

ok found '1464957942.7199426', expected '1464957942.6400380', error '0.0000000'

Test #73:

score: 0
Accepted
time: 16ms
memory: 3984kb

input:

2000 15 5891

output:

1490626300.15650848811492323875

result:

ok found '1490626300.1565084', expected '1490626300.1558671', error '0.0000000'

Test #74:

score: 0
Accepted
time: 13ms
memory: 4088kb

input:

2000 16 1750

output:

1504400245.41609392804093658924

result:

ok found '1504400245.4160938', expected '1504400245.4149806', error '0.0000000'

Test #75:

score: -100
Wrong Answer
time: 1703ms
memory: 4340kb

input:

2000 1990 6698

output:

nan

result:

wrong output format Expected double, but "nan" found