QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#386473 | #5809. Min Perimeter | debgxh | 0 | 18026ms | 105796kb | C++14 | 1.5kb | 2024-04-11 17:10:42 | 2024-04-11 17:10:42 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
constexpr int MAXN = 1000005;
int n, T; pair<double, double> A[MAXN]; vector<int> To[MAXN];
double Ans = INFINITY, Lim = INFINITY;
double dis(int i, int j){return hypot(A[i].first - A[j].first, A[i].second - A[j].second);}
int main(){
cin.tie(nullptr)->sync_with_stdio(false);
cin >> T; for(int t = 1; t <= T; t++){
cin >> n; double alpha = (double)mt19937(time(nullptr))() / UINT32_MAX * acos(-1);
Ans = Lim = INFINITY;
for(int i = 1; i <= n; i++){
int x, y; cin >> x >> y, alpha = 0;
A[i].first = x * cos(alpha) - y * sin(alpha);
A[i].second = y * cos(alpha) + x * sin(alpha);
To[i].clear();
}
sort(A + 1, A + n + 1);
for(int i = 1; i <= n; i++){
double mn = INFINITY, se = INFINITY;
for(int j = -50; j <= 50; j++) if(j && 1 <= i + j && i + j <= n){
double len = dis(i, i + j);
if(len < mn) se = mn, mn = len; else se = min(se, len);
}
Lim = min(Lim, mn + se);
}
for(int i = 1; i <= n; i++)
for(int j = 1; j <= 50 && i + j <= n; j++) if(dis(i, i + j) < Lim * 1.1 + 0.1)
To[i].push_back(i + j), To[i + j].push_back(i);
for(int i = 1; i <= n; i++) for(auto j: To[i]) for(auto k: To[j]) for(auto t: To[k])
if(t == i){Ans = min(Ans, dis(i, j) + dis(j, k) + dis(k, i)); break;}
cout << "Case #" << t << ": " << fixed << setprecision(14) << Ans << '\n';
}
cerr << (double)clock() / CLOCKS_PER_SEC << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 157ms
memory: 27920kb
input:
15 3 2 6 7 0 3 0 3 713 269 371 79 455 421 3 91983245 637281504 756917015 312173515 869576338 436726680 10000 14761642 78236002 9047458 47951098 5238002 27761162 476182 2523742 1428546 7571226 26190010 138805810 21904372 116092132 18094916 95902196 43332562 229660522 55237112 292754072 52380020 27761...
output:
Case #1: 17.89301220620487 Case #2: 1042.84483496438816 Case #3: 1711142102.79132699966431 Case #4: 90912.29637403292872 Case #5: 4.00000000000000 Case #6: 26.15383034216369 Case #7: 1701.01268109561670 Case #8: 2865438.19199387123808 Case #9: 2020088.33722631959245 Case #10: 1792106.03729207115248 ...
result:
wrong answer read 4.000000000000 but expected 3.414213562373 (test case 5)
Subtask #2:
score: 0
Wrong Answer
Test #2:
score: 0
Wrong Answer
time: 18026ms
memory: 105796kb
input:
15 3 501691275 344354353 167768963 536043860 249445040 557426549 4 1000000000 0 0 0 1000000000 1000000000 0 1000000000 1000000 138925776 669369648 61257680 295150640 170762328 822763944 55483472 267329456 97736936 470914328 84041848 404928904 18463588 88960924 124429360 599523280 95066048 458045504 ...
output:
Case #1: 799653579.13308978080750 Case #2: 3414213562.37309503555298 Case #3: 866.07159057435888 Case #4: 62459.89536963714636 Case #5: 59141.91835893177631 Case #6: 898200.35246485820971 Case #7: 1707101.20907227718271 Case #8: 1703.58309032517354 Case #9: 1702.08048770507366 Case #10: 6806.6655839...
result:
wrong answer read 1703.583090325174 but expected 1686.226798258136 (test case 8)