QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#659030 | #5667. Meeting Places | ucup-team5234 | TL | 741ms | 4008kb | C++23 | 2.9kb | 2024-10-19 18:18:04 | 2024-10-19 18:18:06 |
Judging History
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.999;
ld d = 1e9;
rep(_, 40000) {
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;
if(n-k>10){
ld sx, sy, sr;
ld ep = 10;
{
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>(10, 10000000000000000.0));
dp[0][0] = 0.0;
for(int i=0;i<n; i++){
for(int j=0;j<10;j++) dp[i+1][j] = min(dp[i][j], dp[i+1][j]);
for(int j=1;j<10&&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<10;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: 13ms
memory: 3844kb
input:
100 23 213
output:
1319350480.80073253880254924297
result:
ok found '1319350480.8007326', expected '1319350480.8007326', error '0.0000000'
Test #2:
score: 0
Accepted
time: 36ms
memory: 3848kb
input:
10 1 1060
output:
1042753143.34516768663888797164
result:
ok found '1042753143.3451676', expected '1042753143.3451676', error '0.0000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
10 10 2373
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #4:
score: 0
Accepted
time: 36ms
memory: 3740kb
input:
10 2 3396
output:
1236610536.94692303135525435209
result:
ok found '1236610536.9469230', expected '1236610536.9469230', error '0.0000000'
Test #5:
score: 0
Accepted
time: 33ms
memory: 3732kb
input:
10 3 1998
output:
973790809.82244422752410173416
result:
ok found '973790809.8224442', expected '973790809.8224442', error '0.0000000'
Test #6:
score: 0
Accepted
time: 36ms
memory: 3896kb
input:
10 4 562
output:
910867389.90693293779622763395
result:
ok found '910867389.9069330', expected '910867389.9069330', error '0.0000000'
Test #7:
score: 0
Accepted
time: 32ms
memory: 3896kb
input:
10 5 6048
output:
818240814.71051498345332220197
result:
ok found '818240814.7105150', expected '818240814.7105150', error '0.0000000'
Test #8:
score: 0
Accepted
time: 36ms
memory: 3764kb
input:
10 6 2524
output:
500106979.34677627717610448599
result:
ok found '500106979.3467763', expected '500106979.3467762', error '0.0000000'
Test #9:
score: 0
Accepted
time: 36ms
memory: 3780kb
input:
10 7 5415
output:
559478971.43200588686158880591
result:
ok found '559478971.4320059', expected '559478971.4320059', error '0.0000000'
Test #10:
score: 0
Accepted
time: 36ms
memory: 3856kb
input:
10 8 1438
output:
500309745.46276999366818927228
result:
ok found '500309745.4627700', expected '500309745.4627700', error '0.0000000'
Test #11:
score: 0
Accepted
time: 36ms
memory: 3788kb
input:
10 9 3172
output:
162279748.87534517397580202669
result:
ok found '162279748.8753452', expected '162279748.8753452', error '0.0000000'
Test #12:
score: 0
Accepted
time: 5ms
memory: 3844kb
input:
100 1 8316
output:
1320052902.15229025273583829403
result:
ok found '1320052902.1522903', expected '1320052902.1522903', error '0.0000000'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
100 100 4179
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #14:
score: 0
Accepted
time: 8ms
memory: 3852kb
input:
100 12 3405
output:
1329687126.13045487948693335056
result:
ok found '1329687126.1304548', expected '1329687126.1304548', error '0.0000000'
Test #15:
score: 0
Accepted
time: 20ms
memory: 3780kb
input:
100 16 8378
output:
1338056514.48426947183907032013
result:
ok found '1338056514.4842694', expected '1338056514.4842694', error '0.0000000'
Test #16:
score: 0
Accepted
time: 8ms
memory: 3840kb
input:
100 2 1858
output:
1310392496.14305808208882808685
result:
ok found '1310392496.1430581', expected '1310392496.1430581', error '0.0000000'
Test #17:
score: 0
Accepted
time: 7ms
memory: 3792kb
input:
100 25 4596
output:
1440464106.62292967212852090597
result:
ok found '1440464106.6229296', expected '1440464106.6229298', error '0.0000000'
Test #18:
score: 0
Accepted
time: 9ms
memory: 3916kb
input:
100 3 5633
output:
1399621082.61427368340082466602
result:
ok found '1399621082.6142738', expected '1399621082.6142738', error '0.0000000'
Test #19:
score: 0
Accepted
time: 22ms
memory: 3848kb
input:
100 32 7827
output:
1342073760.53223296732176095247
result:
ok found '1342073760.5322330', expected '1342073760.5322330', error '0.0000000'
Test #20:
score: 0
Accepted
time: 16ms
memory: 3780kb
input:
100 4 3693
output:
1339808706.70986888126935809851
result:
ok found '1339808706.7098689', expected '1339808706.7098689', error '0.0000000'
Test #21:
score: 0
Accepted
time: 16ms
memory: 3796kb
input:
100 5 2252
output:
1394874243.50570420245639979839
result:
ok found '1394874243.5057042', expected '1394874243.5057042', error '0.0000000'
Test #22:
score: 0
Accepted
time: 17ms
memory: 3896kb
input:
100 50 4254
output:
1322809748.40528354514390230179
result:
ok found '1322809748.4052835', expected '1322809748.4052832', error '0.0000000'
Test #23:
score: 0
Accepted
time: 8ms
memory: 3792kb
input:
100 6 53
output:
1364441356.17009882046841084957
result:
ok found '1364441356.1700988', expected '1364441356.1700988', error '0.0000000'
Test #24:
score: 0
Accepted
time: 34ms
memory: 3752kb
input:
100 64 4337
output:
1180754550.24228390457574278116
result:
ok found '1180754550.2422838', expected '1180754550.2422838', error '0.0000000'
Test #25:
score: 0
Accepted
time: 7ms
memory: 3792kb
input:
100 7 5366
output:
1423557626.35867970436811447144
result:
ok found '1423557626.3586798', expected '1423557626.3586798', error '0.0000000'
Test #26:
score: 0
Accepted
time: 8ms
memory: 3740kb
input:
100 8 8509
output:
1353289305.35199556453153491020
result:
ok found '1353289305.3519955', expected '1353289305.3519957', error '0.0000000'
Test #27:
score: 0
Accepted
time: 30ms
memory: 3900kb
input:
100 9 1423
output:
1228887266.56616696249693632126
result:
ok found '1228887266.5661669', expected '1228887266.5661671', error '0.0000000'
Test #28:
score: 0
Accepted
time: 728ms
memory: 3832kb
input:
100 91 4806
output:
656574218.50867550785187631845
result:
ok found '656574218.5086755', expected '656574218.5086756', error '0.0000000'
Test #29:
score: 0
Accepted
time: 727ms
memory: 3852kb
input:
100 92 4024
output:
794693428.61622403649380430579
result:
ok found '794693428.6162241', expected '794693428.6162238', error '0.0000000'
Test #30:
score: 0
Accepted
time: 726ms
memory: 3872kb
input:
100 93 606
output:
677641787.48631221696268767118
result:
ok found '677641787.4863123', expected '677641787.4863122', error '0.0000000'
Test #31:
score: 0
Accepted
time: 726ms
memory: 3868kb
input:
100 94 7265
output:
686423239.26260277041001245379
result:
ok found '686423239.2626028', expected '686423239.2626028', error '0.0000000'
Test #32:
score: 0
Accepted
time: 722ms
memory: 3864kb
input:
100 95 8469
output:
328187125.92359506877255626023
result:
ok found '328187125.9235951', expected '328187125.9235951', error '0.0000000'
Test #33:
score: 0
Accepted
time: 731ms
memory: 3752kb
input:
100 96 1079
output:
492964787.62590854152222163975
result:
ok found '492964787.6259086', expected '492964787.6259086', error '0.0000000'
Test #34:
score: 0
Accepted
time: 726ms
memory: 3864kb
input:
100 97 5453
output:
258652807.79065647222159896046
result:
ok found '258652807.7906565', expected '258652807.7906564', error '0.0000000'
Test #35:
score: 0
Accepted
time: 741ms
memory: 3832kb
input:
100 98 1778
output:
159490192.11889069483731873333
result:
ok found '159490192.1188907', expected '159490192.1188908', error '0.0000000'
Test #36:
score: 0
Accepted
time: 727ms
memory: 3856kb
input:
100 99 1825
output:
33793756.32899804245244013146
result:
ok found '33793756.3289980', expected '33793756.3289980', error '0.0000000'
Test #37:
score: 0
Accepted
time: 71ms
memory: 3964kb
input:
1000 1 2453
output:
1486878333.28585741319693624973
result:
ok found '1486878333.2858574', expected '1486878333.2858574', error '0.0000000'
Test #38:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
1000 1000 1798
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #39:
score: 0
Accepted
time: 64ms
memory: 3916kb
input:
1000 125 43
output:
1474031969.51742330612614750862
result:
ok found '1474031969.5174234', expected '1474031969.5174232', error '0.0000000'
Test #40:
score: 0
Accepted
time: 192ms
memory: 3880kb
input:
1000 128 8107
output:
1440374614.93919762072619050741
result:
ok found '1440374614.9391975', expected '1440374614.9391975', error '0.0000000'
Test #41:
score: 0
Accepted
time: 73ms
memory: 3868kb
input:
1000 15 6639
output:
1491336935.55362494708970189095
result:
ok found '1491336935.5536249', expected '1491336935.5536251', error '0.0000000'
Test #42:
score: 0
Accepted
time: 80ms
memory: 3968kb
input:
1000 16 1251
output:
1445211807.11609637481160461903
result:
ok found '1445211807.1160963', expected '1445211807.1160963', error '0.0000000'
Test #43:
score: 0
Accepted
time: 72ms
memory: 3880kb
input:
1000 2 1303
output:
1468989868.64860226330347359180
result:
ok found '1468989868.6486022', expected '1468989868.6486022', error '0.0000000'
Test #44:
score: 0
Accepted
time: 55ms
memory: 3868kb
input:
1000 250 4457
output:
1487674970.76601595606189221144
result:
ok found '1487674970.7660160', expected '1487674970.7660158', error '0.0000000'
Test #45:
score: 0
Accepted
time: 165ms
memory: 3876kb
input:
1000 256 4135
output:
1474218271.51407722756266593933
result:
ok found '1474218271.5140772', expected '1474218271.5140772', error '0.0000000'
Test #46:
score: 0
Accepted
time: 72ms
memory: 3880kb
input:
1000 3 713
output:
1482496228.99047766008879989386
result:
ok found '1482496228.9904776', expected '1482496228.9904778', error '0.0000000'
Test #47:
score: 0
Accepted
time: 72ms
memory: 3856kb
input:
1000 31 8139
output:
1494361943.47991948935668915510
result:
ok found '1494361943.4799194', expected '1494361943.4799194', error '0.0000000'
Test #48:
score: 0
Accepted
time: 69ms
memory: 3972kb
input:
1000 32 7916
output:
1499333171.09386477968655526638
result:
ok found '1499333171.0938647', expected '1499333171.0938647', error '0.0000000'
Test #49:
score: 0
Accepted
time: 77ms
memory: 3900kb
input:
1000 4 2432
output:
1455826569.03941022546496242285
result:
ok found '1455826569.0394101', expected '1455826569.0394101', error '0.0000000'
Test #50:
score: 0
Accepted
time: 71ms
memory: 4008kb
input:
1000 5 2457
output:
1452189628.19671406457200646400
result:
ok found '1452189628.1967142', expected '1452189628.1967139', error '0.0000000'
Test #51:
score: 0
Accepted
time: 187ms
memory: 3920kb
input:
1000 500 8734
output:
1432279300.56627845636103302240
result:
ok found '1432279300.5662785', expected '1432279300.5662787', error '0.0000000'
Test #52:
score: 0
Accepted
time: 257ms
memory: 3980kb
input:
1000 512 1866
output:
1446804508.03518652496859431267
result:
ok found '1446804508.0351865', expected '1446804508.0351865', error '0.0000000'
Test #53:
score: 0
Accepted
time: 73ms
memory: 3952kb
input:
1000 6 1580
output:
1490178756.85660347505472600460
result:
ok found '1490178756.8566034', expected '1490178756.8566034', error '0.0000000'
Test #54:
score: 0
Accepted
time: 68ms
memory: 4000kb
input:
1000 62 3047
output:
1482100829.64671089942567050457
result:
ok found '1482100829.6467109', expected '1482100829.6467109', error '0.0000000'
Test #55:
score: 0
Accepted
time: 67ms
memory: 3940kb
input:
1000 64 4836
output:
1441850815.85536135162692517042
result:
ok found '1441850815.8553615', expected '1441850815.8553615', error '0.0000000'
Test #56:
score: 0
Accepted
time: 74ms
memory: 3908kb
input:
1000 7 5269
output:
1473104490.72879835427738726139
result:
ok found '1473104490.7287984', expected '1473104490.7287984', error '0.0000000'
Test #57:
score: 0
Accepted
time: 72ms
memory: 3964kb
input:
1000 8 2649
output:
1459133296.60662345064338296652
result:
ok found '1459133296.6066234', expected '1459133296.6066234', error '0.0000000'
Test #58:
score: 0
Accepted
time: 71ms
memory: 3952kb
input:
1000 9 3999
output:
1482914523.38070390780922025442
result:
ok found '1482914523.3807039', expected '1482914523.3807039', error '0.0000000'
Test #59:
score: -100
Time Limit Exceeded
input:
1000 991 3610