QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#659057 | #5667. Meeting Places | ucup-team5234 | WA | 9ms | 3904kb | C++23 | 2.9kb | 2024-10-19 18:25:20 | 2024-10-19 18:25:32 |
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.998;
ld d = 1e9;
rep(_, 9000) {
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 = 7;
{
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);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 3808kb
input:
100 23 213
output:
1319350480.80073349212761968374
result:
ok found '1319350480.8007336', expected '1319350480.8007326', error '0.0000000'
Test #2:
score: 0
Accepted
time: 6ms
memory: 3820kb
input:
10 1 1060
output:
1042753143.34528817591490224004
result:
ok found '1042753143.3452882', expected '1042753143.3451676', error '0.0000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
10 10 2373
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #4:
score: 0
Accepted
time: 9ms
memory: 3840kb
input:
10 2 3396
output:
1236610536.94692399958148598671
result:
ok found '1236610536.9469240', expected '1236610536.9469230', error '0.0000000'
Test #5:
score: 0
Accepted
time: 9ms
memory: 3824kb
input:
10 3 1998
output:
973790809.85248010163195431232
result:
ok found '973790809.8524801', expected '973790809.8224442', error '0.0000000'
Test #6:
score: 0
Accepted
time: 6ms
memory: 3864kb
input:
10 4 562
output:
910867400.99730802967678755522
result:
ok found '910867400.9973080', expected '910867389.9069330', error '0.0000000'
Test #7:
score: 0
Accepted
time: 9ms
memory: 3816kb
input:
10 5 6048
output:
818240819.01966825366253033280
result:
ok found '818240819.0196682', expected '818240814.7105150', error '0.0000000'
Test #8:
score: 0
Accepted
time: 8ms
memory: 3772kb
input:
10 6 2524
output:
500106993.11636096911388449371
result:
ok found '500106993.1163610', expected '500106979.3467762', error '0.0000000'
Test #9:
score: 0
Accepted
time: 8ms
memory: 3768kb
input:
10 7 5415
output:
559478971.46204272954491898417
result:
ok found '559478971.4620427', expected '559478971.4320059', error '0.0000000'
Test #10:
score: 0
Accepted
time: 8ms
memory: 3788kb
input:
10 8 1438
output:
500309745.49268587474944069982
result:
ok found '500309745.4926859', expected '500309745.4627700', error '0.0000000'
Test #11:
score: 0
Accepted
time: 8ms
memory: 3820kb
input:
10 9 3172
output:
162279748.87534614249307196587
result:
ok found '162279748.8753462', expected '162279748.8753452', error '0.0000000'
Test #12:
score: 0
Accepted
time: 2ms
memory: 3828kb
input:
100 1 8316
output:
1320052902.15241074236109852791
result:
ok found '1320052902.1524107', expected '1320052902.1522903', error '0.0000000'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3872kb
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: 3864kb
input:
100 12 3405
output:
1329687139.01744368264917284250
result:
ok found '1329687139.0174437', expected '1329687126.1304548', error '0.0000000'
Test #15:
score: -100
Wrong Answer
time: 4ms
memory: 3904kb
input:
100 16 8378
output:
1338430291.69595060148276388645
result:
wrong answer 1st numbers differ - expected: '1338056514.4842694', found: '1338430291.6959505', error = '0.0002793'