QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#526141#5667. Meeting Placessolar_express#TL 558ms128940kbC++233.3kb2024-08-21 11:26:522024-08-21 11:26:52

Judging History

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

  • [2024-08-21 11:26:52]
  • 评测
  • 测评结果:TL
  • 用时:558ms
  • 内存:128940kb
  • [2024-08-21 11:26:52]
  • 提交

answer

#include<bits/stdc++.h>
#define N 2005
#define db long double
using namespace std;
int n,K;
const db eps = 1e-10;
db sgn(db x) { return x < -eps ? -1 : x > eps; }
db eq(db x, db y) { return !sgn(x - y); }
struct p2 {
	db x, y;
	db norm() const { return x * x + y * y; }
	db abs() const { return std::sqrt(x * x + y * y); }
	db arg() const { return atan2(y, x); }
}a[N];
p2 r90(p2 x) { return {-x.y, x.x}; }
p2 operator + (p2 x, p2 y) { return {x.x + y.x, x.y + y.y}; }
p2 operator - (p2 x, p2 y) { return {x.x - y.x, x.y - y.y}; }
p2 operator / (p2 x, db y) { return {x.x / y, x.y / y}; }
p2 operator * (p2 x, db y) { return {x.x * y, x.y * y}; }
p2 operator * (db y, p2 x) { return {x.x * y, x.y * y}; }
db operator * (p2 x, p2 y) { return x.x * y.y - x.y * y.x; }
db operator % (p2 x, p2 y) { return x.x * y.x + x.y * y.y; }
struct circle : p2 { db r; };
circle incircle(p2 a, p2 b, p2 c) {
	db A = (b - c).abs(), B = (c - a).abs(), C = (a - b).abs();
	return {(a * A + b * B + c * C) / (A + B + C), fabs((b - a) * (c - a)) / (A + B + C)};
} // 三点确定内心,不是最小圆覆盖内容
circle circumcenter(p2 a, p2 b, p2 c) { 
	p2 bc = c - b, ca = a - c, ab = b - a;
	p2 o = (b + c - r90(bc) * (ca % ab) / (ca * ab)) / 2;
	return {o, (a - o).abs()};
}// 三点确定外心
circle cir(p2 a, p2 b) { // 根据直径生成圆
	return {(a + b) / 2, (a - b).abs() / 2};
}
bool in(circle x, p2 y) { return (p2(x) - y).abs() <= x.r + eps; }
int gen(int x){
    return (1ll*x*233811181+1)%(2147483647);
}
db cst[N][N];
db f[N];
int st[N];
db g[N][N];
int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);
    cin>>n>>K>>a[1].x;
    for(int i=1;i<=n;++i){
        if(i>=2) a[i].x=gen(a[i-1].y);
        a[i].y=gen(a[i].x);
    }
    for(int bg=1;bg<=n;++bg){
        circle o={a[bg],0.0};
        cst[bg][bg]=0.0;
        for(int i = bg+1;i <= n;++i) {
            if(in(o, a[i])){
                cst[bg][i]=o.r;
                continue;
            }
            o = cir(a[bg], a[i]);
            for(int j = bg;j < i;++j) {
                if(in(o, a[j])) continue;
                o = cir(a[j], a[i]);
                for(int k = bg;k < j;++k) {
                    if(in(o, a[k])) continue;
                    o = circumcenter(a[i], a[j], a[k]);
                }
            }
            cst[bg][i]=o.r;
	    }
    }
    // db L=-1e10,R=1e10;
    // cerr<<L<<" "<<R<<endl;
    // for(int t=1;t<=100;++t){
    //     db mid=(L+R)/2.0;
    //     f[0]=0;
    //     st[0]=0;
    //     for(int i=1;i<=n;++i){
    //         f[i]=1e18;
    //         for(int j=0;j<i;++j)
    //             if(f[i]>f[j]+cst[j+1][i]+mid)
    //                 f[i]=f[j]+cst[j+1][i]+mid,st[i]=st[j]+1;
    //     }
    //     if(st[n]>K) L=mid;
    //     if(st[n]==K){
    //         cout<<f[n]-mid*K<<'\n';
    //         return 0;
    //     }
    //     if(st[n]<K) R=mid;   
    //     cerr<<mid<<" "<<st[n]<<endl;    
    // }
    for(int i=0;i<=n;++i)
        for(int j=0;j<=K;++j) 
            g[i][j]=1e18;
    g[0][0]=0.0;
    for(int i=1;i<=n;++i)
        for(int j=0;j<i;++j)
            for(int k=1;k<=min(K,j+1);++k){
                g[i][k]=min(g[i][k],g[j][k-1]+cst[j+1][i]);
            }
    cout<<setprecision(20)<<g[n][K]<<'\n';
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

100 23 213

output:

1319350480.8007325387

result:

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

Test #2:

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

input:

10 1 1060

output:

1042753143.3451676866

result:

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

Test #3:

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

input:

10 10 2373

output:

0

result:

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

Test #4:

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

input:

10 2 3396

output:

1236610536.9469230312

result:

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

Test #5:

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

input:

10 3 1998

output:

973790809.82244422752

result:

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

Test #6:

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

input:

10 4 562

output:

910867389.90693293762

result:

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

Test #7:

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

input:

10 5 6048

output:

818240814.710514982

result:

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

Test #8:

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

input:

10 6 2524

output:

500106979.34677627444

result:

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

Test #9:

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

input:

10 7 5415

output:

559478971.43200588669

result:

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

Test #10:

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

input:

10 8 1438

output:

500309745.46276999364

result:

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

Test #11:

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

input:

10 9 3172

output:

162279748.87534517395

result:

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

Test #12:

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

input:

100 1 8316

output:

1320052902.1522902527

result:

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

Test #13:

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

input:

100 100 4179

output:

0

result:

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

Test #14:

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

input:

100 12 3405

output:

1329687126.1304548786

result:

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

Test #15:

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

input:

100 16 8378

output:

1338056514.4842694717

result:

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

Test #16:

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

input:

100 2 1858

output:

1310392496.1430580793

result:

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

Test #17:

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

input:

100 25 4596

output:

1440464106.622929672

result:

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

Test #18:

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

input:

100 3 5633

output:

1399621082.6142736834

result:

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

Test #19:

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

input:

100 32 7827

output:

1342073760.5322329637

result:

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

Test #20:

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

input:

100 4 3693

output:

1339808706.7098688791

result:

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

Test #21:

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

input:

100 5 2252

output:

1394874243.5057042023

result:

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

Test #22:

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

input:

100 50 4254

output:

1322809748.405283544

result:

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

Test #23:

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

input:

100 6 53

output:

1364441356.1700988172

result:

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

Test #24:

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

input:

100 64 4337

output:

1180754550.2422839039

result:

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

Test #25:

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

input:

100 7 5366

output:

1423557626.3586797034

result:

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

Test #26:

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

input:

100 8 8509

output:

1353289305.3519955645

result:

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

Test #27:

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

input:

100 9 1423

output:

1228887266.5661669594

result:

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

Test #28:

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

input:

100 91 4806

output:

656574218.50867550453

result:

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

Test #29:

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

input:

100 92 4024

output:

794693428.6162240337

result:

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

Test #30:

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

input:

100 93 606

output:

677641787.48631221149

result:

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

Test #31:

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

input:

100 94 7265

output:

686423239.26260277035

result:

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

Test #32:

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

input:

100 95 8469

output:

328187125.92359506871

result:

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

Test #33:

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

input:

100 96 1079

output:

492964787.62590853922

result:

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

Test #34:

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

input:

100 97 5453

output:

258652807.79065646986

result:

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

Test #35:

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

input:

100 98 1778

output:

159490192.11889069332

result:

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

Test #36:

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

input:

100 99 1825

output:

33793756.328998042445

result:

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

Test #37:

score: 0
Accepted
time: 17ms
memory: 69512kb

input:

1000 1 2453

output:

1486878333.2858574132

result:

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

Test #38:

score: 0
Accepted
time: 550ms
memory: 70616kb

input:

1000 1000 1798

output:

0

result:

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

Test #39:

score: 0
Accepted
time: 191ms
memory: 69440kb

input:

1000 125 43

output:

1474031969.5174233053

result:

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

Test #40:

score: 0
Accepted
time: 197ms
memory: 67680kb

input:

1000 128 8107

output:

1440374614.9391976207

result:

ok found '1440374614.9391975', expected '1440374614.9391975', error '0.0000000'

Test #41:

score: 0
Accepted
time: 52ms
memory: 67460kb

input:

1000 15 6639

output:

1491336935.5536249472

result:

ok found '1491336935.5536249', expected '1491336935.5536251', error '0.0000000'

Test #42:

score: 0
Accepted
time: 45ms
memory: 67612kb

input:

1000 16 1251

output:

1445211807.1160963748

result:

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

Test #43:

score: 0
Accepted
time: 23ms
memory: 69448kb

input:

1000 2 1303

output:

1468989868.6486022632

result:

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

Test #44:

score: 0
Accepted
time: 320ms
memory: 69504kb

input:

1000 250 4457

output:

1487674970.7660159559

result:

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

Test #45:

score: 0
Accepted
time: 344ms
memory: 69956kb

input:

1000 256 4135

output:

1474218271.5140772276

result:

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

Test #46:

score: 0
Accepted
time: 15ms
memory: 67536kb

input:

1000 3 713

output:

1482496228.9904776601

result:

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

Test #47:

score: 0
Accepted
time: 64ms
memory: 67548kb

input:

1000 31 8139

output:

1494361943.4799194892

result:

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

Test #48:

score: 0
Accepted
time: 70ms
memory: 67492kb

input:

1000 32 7916

output:

1499333171.0938647797

result:

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

Test #49:

score: 0
Accepted
time: 26ms
memory: 69432kb

input:

1000 4 2432

output:

1455826569.0394102233

result:

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

Test #50:

score: 0
Accepted
time: 17ms
memory: 69536kb

input:

1000 5 2457

output:

1452189628.1967140646

result:

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

Test #51:

score: 0
Accepted
time: 483ms
memory: 70144kb

input:

1000 500 8734

output:

1432279300.5662784537

result:

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

Test #52:

score: 0
Accepted
time: 495ms
memory: 70272kb

input:

1000 512 1866

output:

1446804508.0351865208

result:

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

Test #53:

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

input:

1000 6 1580

output:

1490178756.8566034751

result:

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

Test #54:

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

input:

1000 62 3047

output:

1482100829.6467108954

result:

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

Test #55:

score: 0
Accepted
time: 115ms
memory: 69520kb

input:

1000 64 4836

output:

1441850815.8553613515

result:

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

Test #56:

score: 0
Accepted
time: 38ms
memory: 67620kb

input:

1000 7 5269

output:

1473104490.7287983542

result:

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

Test #57:

score: 0
Accepted
time: 25ms
memory: 69424kb

input:

1000 8 2649

output:

1459133296.6066234506

result:

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

Test #58:

score: 0
Accepted
time: 33ms
memory: 67364kb

input:

1000 9 3999

output:

1482914523.3807039036

result:

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

Test #59:

score: 0
Accepted
time: 558ms
memory: 67828kb

input:

1000 991 3610

output:

295501032.47808742887

result:

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

Test #60:

score: 0
Accepted
time: 558ms
memory: 70696kb

input:

1000 992 3030

output:

337274092.65403818787

result:

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

Test #61:

score: 0
Accepted
time: 558ms
memory: 68240kb

input:

1000 993 6980

output:

222375113.10579861072

result:

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

Test #62:

score: 0
Accepted
time: 552ms
memory: 67996kb

input:

1000 994 7222

output:

218007091.69330408808

result:

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

Test #63:

score: 0
Accepted
time: 556ms
memory: 67876kb

input:

1000 995 1323

output:

169577520.22365287453

result:

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

Test #64:

score: 0
Accepted
time: 552ms
memory: 67860kb

input:

1000 996 2761

output:

135524743.9114487152

result:

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

Test #65:

score: 0
Accepted
time: 553ms
memory: 70572kb

input:

1000 997 4946

output:

87043806.422792088611

result:

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

Test #66:

score: 0
Accepted
time: 548ms
memory: 69760kb

input:

1000 998 842

output:

24094936.551191687944

result:

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

Test #67:

score: 0
Accepted
time: 550ms
memory: 68112kb

input:

1000 999 5078

output:

4597519.0646550341412

result:

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

Test #68:

score: 0
Accepted
time: 72ms
memory: 128940kb

input:

2000 1 2633

output:

1502350354.4995269895

result:

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

Test #69:

score: -100
Time Limit Exceeded

input:

2000 1000 6248

output:


result: