QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#330345 | #6517. Computational Geometry | tien_noob | WA | 2ms | 5732kb | C++20 | 2.3kb | 2024-02-17 14:40:38 | 2024-02-17 14:40:40 |
Judging History
answer
//Make CSP great again
//Vengeance
#include <bits/stdc++.h>
#define TASK "TESTCODE"
using namespace std;
const int N = 5e3;
int n;
long long res, l[N], r[N], dp_l[N][N], dp_r[N][N], f[N];
struct TPoint
{
int x, y;
} p[N];
using TVector = TPoint;
TVector operator - (TPoint a, TPoint b)
{
return {b.x - a.x, b.y - a.y};
}
long long dis (TPoint a, TPoint b) // dis
{
return 1LL * (a.x - b.x) * (a.x - b.x) + 1LL * (a.y - b.y) * (a.y - b.y);
}
long long operator * (TVector a, TVector b)
{
return 1LL * a.x * b.y - 1LL * a.y * b.x;
}
bool Straight(TPoint a, TPoint b, TPoint c)
{
return (b - a) * (c - b) == 0;
}
int nxt(int i)
{
if (i == n - 1)
{
return 0;
}
return i + 1;
}
int pre(int i)
{
if (i == 0)
{
return n - 1;
}
return i - 1;
}
void read()
{
res = 1e18;
cin >> n;
for (int i = 0; i < n; ++ i)
{
cin >> p[i].x >> p[i].y;
}
}
void solve()
{
for (int i = 0; i < n; ++ i)
{
dp_l[i][i] = dp_r[i][i] = 0;
long long mx = 0;
for (int j = nxt(i); j != i; j = nxt(j))
{
mx = max(mx, dis(p[i], p[j]));
dp_l[i][j] = mx;
}
mx = 0;
for (int j = pre(i); j != i; j = pre(j))
{
mx = max(mx, dis(p[i], p[j]));
dp_r[i][j] = mx;
}
}
for (int i = 0; i < n; ++ i)
{
long long mx = 0;
for (int j = pre(i); j != i; j = pre(j))
{
mx = max(mx, dp_l[j][i]);
f[j] = mx;
}
mx = 0;
for (int j = nxt(i); j != i; j = nxt(j))
{
mx = max(mx, dp_r[j][i]);
if (!Straight(p[i], p[nxt(i)], p[j]) && !Straight(p[j], p[pre(i)], p[i]))
{
res = min(res, f[j] + mx);
}
}
}
cout << res << '\n';
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
if (fopen(TASK".INP", "r"))
{
freopen(TASK".INP", "r", stdin);
//freopen(TASK".OUT", "w", stdout);
}
int t = 1;
bool typetest = true;
if (typetest)
{
cin >> t;
}
for (int __ = 1; __ <= t; ++ __)
{
//cout << "Case " << __ << ": ";
read();
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5640kb
input:
2 4 1 0 2 0 1 1 0 0 6 10 4 9 7 5 7 4 5 6 4 9 3
output:
4 44
result:
ok 2 number(s): "4 44"
Test #2:
score: 0
Accepted
time: 0ms
memory: 5732kb
input:
713 8 8 25 3 15 0 5 10 0 19 2 24 6 23 15 15 34 8 25 16 18 25 10 32 1 23 0 14 21 0 27 2 32 6 7 16 15 8 20 1 16 0 12 16 0 21 1 24 5 7 15 1 18 0 24 8 27 15 4 19 0 17 7 8 4 10 20 0 30 15 0 14 10 6 15 0 24 10 21 14 12 14 7 11 0 3 7 18 7 16 9 12 10 6 9 0 4 5 0 15 1 9 0 23 8 13 14 6 24 0 34 1 41 11 37 20 1...
output:
1075 1389 706 687 1550 497 300 1668 471 162 519 190 786 983 367 930 580 524 509 275 617 298 146 1330 494 965 599 1321 866 1210 233 398 560 1548 871 938 366 500 371 1118 1222 1994 712 586 858 624 697 575 1274 882 1035 406 934 670 990 1231 513 2871 939 2735 1610 834 721 585 203 198 1666 617 1166 326 2...
result:
ok 713 numbers
Test #3:
score: -100
Wrong Answer
time: 2ms
memory: 5660kb
input:
723 6 219724071 0 454078946 131628774 497404433 165947891 427997418 299842932 68283732 510015817 0 327227140 5 277969751 0 576739203 275664810 244855879 638262097 13873538 700473186 0 59956198 10 69526931 509564969 0 395765436 101436487 0 273066511 46581979 904969235 467379058 942000353 535129295 93...
output:
320990950510053393 818929519958899381 1000000000000000000 711353303900820471 683190682500395857 594439231930042527 659610359567672203 1000000000000000000 845514798756141601 410893515758460170 293647337551438590 889581785464512646 1000000000000000000 1000000000000000000 993125871111020743 88416805922...
result:
wrong answer 3rd numbers differ - expected: '1129629590903770087', found: '1000000000000000000'