QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#635668 | #9434. Italian Cuisine | xhytom# | WA | 17ms | 3632kb | C++23 | 2.5kb | 2024-10-12 20:33:28 | 2024-10-12 20:33:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
using i64 = long long;
struct Point {
int x, y;
Point(int x_ = 0, int y_ = 0): x(x_), y(y_) {}
friend Point operator + (Point a, Point b) {
return Point(a.x + b.x, a.y + b.y);
}
friend Point operator - (Point a, Point b) {
return Point(a.x - b.x, a.y - b.y);
}
};
int dot(Point a, Point b) {
return a.x * b.x + a.y + b.y;
}
int det(Point a, Point b) {
return a.x * b.y - a.y * b.x;
}
int dis(Point v) {
return v.x * v.x + v.y * v.y;
}
int sign(int x) {
if (x == 0) {
return 0;
}
if (x < 0) {
return -1;
}
return 1;
}
void solve() {
int n;
std::cin >> n;
Point p;
int r1;
{
auto &[x, y] = p;
std::cin >> x >> y >> r1;
}
std::vector<Point> ps(n + 1);
for (int i = 1; i <= n; i++) {
auto &[x, y] = ps[i];
std::cin >> x >> y;
}
auto nxt = [&](int x)-> int {
if (x == n) {
return 1;
}
return x + 1;
};
auto pre = [&](int x)-> int {
if (x == 1) {
return n;
}
return x - 1;
};
int sum = 0, ma = 0;
for (int L = 1, R = 2; L <= n; L ++) {
if (L != 1) {
sum -= std::abs(det(ps[pre(L)] - ps[L], ps[R] - ps[L]));
ma = std::max(ma, sum);
}
int is = sign(det(p - ps[L], ps[nxt(L)] - ps[L]));
int r = R;
while (true) {
if (L == R) {
R = nxt(R);
r = R;
continue;
}
int S = det(p - ps[L], ps[R] - ps[L]);
if (sign(S) != is) {
break;
}
S = S * S;
int D = dis(ps[L] - ps[R]);
if (S < r1 * r1 * D) {
break;
}
if (R != r) sum += std::abs(det(ps[R] - ps[L], ps[pre(R)] - ps[L]));
// std::cout << "Sum = " << L << ' ' << R << ' ' << sum << '\n';
ma = std::max(ma, sum);
r = R;
R = nxt(R);
}
R = r;
// std::cout << L << ' ' << r << ' ' << ma << '\n';
}
std::cout << ma << '\n';
}
signed main() {
std::ios::sync_with_stdio(false);
std::cin.tie(0);
int t = 1;
std::cin >> t;
while (t --) {
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3556kb
input:
3 5 1 1 1 0 0 1 0 5 0 3 3 0 5 6 2 4 1 2 0 4 0 6 3 4 6 2 6 0 3 4 3 3 1 3 0 6 3 3 6 0 3
output:
5 24 0
result:
ok 3 number(s): "5 24 0"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
1 6 0 0 499999993 197878055 -535013568 696616963 -535013568 696616963 40162440 696616963 499999993 -499999993 499999993 -499999993 -535013568
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: 0
Accepted
time: 8ms
memory: 3632kb
input:
6666 19 -142 -128 26 -172 -74 -188 -86 -199 -157 -200 -172 -199 -186 -195 -200 -175 -197 -161 -188 -144 -177 -127 -162 -107 -144 -90 -126 -87 -116 -86 -104 -89 -97 -108 -86 -125 -80 -142 -74 -162 -72 16 -161 -161 17 -165 -190 -157 -196 -154 -197 -144 -200 -132 -200 -128 -191 -120 -172 -123 -163 -138...
output:
5093 3086 2539 668 3535 7421 4883 5711 5624 1034 2479 3920 4372 2044 4996 5070 2251 4382 4175 1489 1154 3231 4038 1631 5086 14444 1692 6066 687 1512 4849 5456 2757 8341 8557 8235 1013 5203 10853 6042 6300 4480 2303 2728 1739 2187 3385 4266 6322 909 4334 1518 948 5036 1449 2376 3180 4810 1443 1786 47...
result:
ok 6666 numbers
Test #4:
score: -100
Wrong Answer
time: 17ms
memory: 3572kb
input:
6660 19 -689502500 -712344644 121094647 -534017213 -493851833 -578925616 -506634533 -663335128 -540066520 -748890119 -585225068 -847722967 -641694086 -916653030 -716279342 -956235261 -766049951 -1000000000 -836145979 -963288744 -923225928 -948140134 -944751289 -920681768 -972760883 -872492254 -10000...
output:
29209445644409852 26300596939472811 29914246991109333 23082778308541057 61724758890205759 28495613371516256 55790181800070129 12497550857793647 66730105646020095 165521867089299682 5059587960804990 28539002778736750 11563539414024344 54167135861757993 104215990579366813 54873190637200208 10875652641...
result:
wrong answer 1st numbers differ - expected: '117285633945667137', found: '29209445644409852'