QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#268694 | #5111. Take On Meme | juampi | WA | 307ms | 182468kb | Java8 | 4.2kb | 2023-11-28 19:58:47 | 2023-11-28 19:58:47 |
Judging History
answer
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
class k {
static int cmpx, cmpy, ret;
static List<List<Integer>> ch;
static Point[] p;
public static void main(String[] args) {
init();
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
scanner.nextLine(); // Consume the newline character
ch = new ArrayList<>();
p = new Point[N + 1];
for (int i = 0; i <= N; i++) {
ch.add(new ArrayList<>());
}
for (int i = 1; i <= N; i++) {
String[] line = scanner.nextLine().split(" ");
int M = Integer.parseInt(line[0]);
if (M == 0) {
int x = Integer.parseInt(line[1]);
int y = Integer.parseInt(line[2]);
p[i] = new Point(x, y);
} else {
for (int j = 1; j <= M; j++) {
ch.get(i).add(Integer.parseInt(line[j]));
}
}
}
scanner.close();
ret = 0;
Point[] angles = tryAngle(new Point(1, 0));
Point left = angles[0];
Point right = angles[1];
traceHull(left, right);
traceHull(right, left);
System.out.println(ret);
}
static void init() {
cmpx = 1;
cmpy = 0;
ret = 0;
}
static Point[] doit(int x) {
if (ch.get(x).isEmpty()) {
return new Point[]{p[x], p[x]};
}
Point[] result = doit(ch.get(x).get(0));
Point mntot = result[0];
Point mxtot = result[1];
Point mndiff = mxtot.add(mntot);
Point mxdiff = mndiff;
for (int i = 1; i < ch.get(x).size(); i++) {
result = doit(ch.get(x).get(i));
Point mn = result[0];
Point mx = result[1];
mntot = mntot.add(mn);
mxtot = mxtot.add(mx);
mndiff = mndiff.min(mx.add(mn),cmpx, cmpy);
mxdiff = mxdiff.max(mx.add(mn),cmpx, cmpy);
}
return new Point[]{mxtot.negate().add(mndiff), mntot.negate().add(mxdiff)};
}
static Point[] tryAngle(Point dir) {
cmpx = dir.x;
cmpy = dir.y;
Point[] result = doit(1);
Point mn = result[0];
Point mx = result[1];
ret = Math.max(ret, mn.lensqr());
ret = Math.max(ret, mx.lensqr());
return new Point[]{mn, mx};
}
static void traceHull(Point a, Point b) {
if (a.equals(b)) {
return;
}
Point[] result = tryAngle(b.subtract(a).ortho());
Point c = result[1];
if (a.lessThan(c, cmpx, cmpy)) {
traceHull(a, c);
traceHull(c, b);
}
}
}
class Point {
int x;
int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public Point negate() {
return new Point(-x, -y);
}
public Point add(Point p) {
return new Point(x + p.x, y + p.y);
}
public Point subtract(Point p) {
return new Point(x - p.x, y - p.y);
}
public void add2(Point p) {
x += p.x;
y += p.y;
}
public boolean lessThan(Point p, int cmpx, int cmpy) {
return x * cmpx + y * cmpy < p.x * cmpx + p.y * cmpy;
}
public boolean greaterThan(Point p, int cmpx, int cmpy) {
return x * cmpx + y * cmpy > p.x * cmpx + p.y * cmpy;
}
public boolean equals(Point p) {
return x == p.x && y == p.y;
}
public Point ortho() {
return new Point(-y, x);
}
public int lensqr() {
return x * x + y * y;
}
public void print() {
System.out.println("(" + x + "," + y + ")");
}
public Point min(Point other, int cmpx, int cmpy){
if(this.lessThan(other,cmpx,cmpy)){
return this;
}else{
return other;
}
}
public Point max(Point other, int cmpx, int cmpy){
if(this.lessThan(other,cmpx,cmpy)){
return other;
}else{
return this;
}
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 49ms
memory: 43972kb
input:
5 4 2 3 4 5 0 2 -2 0 1 3 0 4 -6 0 -18 5
output:
725
result:
ok single line: '725'
Test #2:
score: 0
Accepted
time: 47ms
memory: 43168kb
input:
5 2 2 3 2 4 5 0 1 5 0 -4 -6 0 -1 7
output:
340
result:
ok single line: '340'
Test #3:
score: 0
Accepted
time: 44ms
memory: 43856kb
input:
18 3 4 3 2 2 5 6 3 7 9 8 3 10 11 12 0 4 -1 0 18 49 0 -2 10 2 13 14 0 -5 6 0 5 8 4 15 16 17 18 0 17 3 0 3 -9 0 -7 -1 0 14 -33 0 -23 11 0 11 14 0 2 19
output:
26269
result:
ok single line: '26269'
Test #4:
score: -100
Wrong Answer
time: 307ms
memory: 182468kb
input:
10000 59 2 171 340 509 678 847 1016 1185 1382 1551 1720 1889 2058 2227 2396 2565 2734 2903 3072 3241 3410 3579 3748 3917 4086 4255 4424 4593 4762 4931 5100 5269 5438 5607 5776 5945 6114 6283 6452 6621 6790 6959 7128 7297 7466 7635 7804 7973 8142 8311 8480 8649 8818 8987 9156 9325 9494 9663 9832 2 3 ...
output:
2146231944
result:
wrong answer 1st lines differ - expected: '4893524000116', found: '2146231944'