File size: 18,665 Bytes
f7ba5f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 |
import java.io.PrintWriter;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
import java.util.TreeSet;
public class ZeroCrossingsCh1 {
static double globalX = 0;
static void solve(Scanner fs, PrintWriter out, int tt) {
int nHulls = fs.nextInt();
Hull[] hulls = new Hull[nHulls + 1];
for (int i = 0; i < nHulls; i++) {
hulls[i] = new Hull(fs);
}
hulls[nHulls] = new Hull();
for (int i = 0; i <= nHulls; i++) {
hulls[i].id = i;
}
ArrayList < Event > events = new ArrayList<>();
for (Hull h: hulls) {
events.addAll(h.getEvents());
}
int nQ = fs.nextInt();
Query[] queries = new Query[nQ];
for (int qq = 0; qq < nQ; qq++) {
queries[qq] = new Query(fs);
events.addAll(queries[qq].getEvents());
}
Collections.sort(events);
TreeSet<Seg> set = new TreeSet<>((a, b) -> {
double ay = a.evalAt(globalX),
by = b.evalAt(globalX);
return Double.compare(ay, by);
});
for (Event e: events) {
globalX = e.x;
if (e.qp != null) {
Vec position = e.qp.position;
Seg hSeg = new Seg(position, position.add(new Vec(1, 0)));
Seg higher = set.higher(hSeg);
e.qp.node = parent(higher, hulls[nHulls]);
} else {
if (e.isEval) {
Seg higher = set.higher(e.s);
e.s.hull.parent = parent(higher, hulls[nHulls]);
e.s.hull.parent.children.add(e.s.hull);
} else if (e.isStart) {
set.add(e.s);
} else {
set.remove(e.s);
}
}
}
hulls[nHulls].calcSubtreeHash();
hulls[nHulls].calcAllHash(new HarmeyerHash(), new HarmeyerHash());
int ans = 0;
for (Query qq: queries) {
Hull node1 = qq.qp1.node, node2 = qq.qp2.node;
boolean possible = node1.allHash.equals(node2.allHash);
if (possible) ans++;
}
out.println("Case #" + tt + ": " + ans);
}
static Hull parent(Seg higher, Hull rootHull) {
if (higher == null) {
return rootHull;
} else if (higher.isUpper) {
//father
return higher.hull;
} else {
//brother
return higher.hull.parent;
}
}
// at a particular x:
// query points (-0.3)
// removals (-0.1)
// additions(+0.1)
// evals(+0.3)
static class Event implements Comparable < Event > {
double x,
y;
boolean isStart;
boolean isEval;
Seg s;
QueryPoint qp;
public Event(boolean isStart, Seg s, QueryPoint qp, boolean isEval) {
this.isStart = isStart;
this.isEval = isEval;
this.s = s;
this.qp = qp;
if (this.s == null) {
x = qp.position.x - 0.3;
} else {
if (isStart) {
x = s.from.x + 0.1;
} else if (isEval) {
x = s.from.x + 0.3;
y = s.from.y;
} else {
x = s.to.x - 0.1;
}
}
}
public int compareTo(Event o) {
if (x != o.x) return Double.compare(x, o.x);
//process higher y first, since we look upwards
return Double.compare(o.y, y);
}
}
static class Hull implements Comparable < Hull > {
int nPoints;
Vec[] points;
Vec[] upperHull,
lowerHull;
Seg[] upperHullSegs,
lowerHullSegs;
int id;
Hull parent;
ArrayList < Hull > children = new ArrayList<>();
HarmeyerHash subtreeHash;
HarmeyerHash allHash;
//root hull
public Hull() {}
public Hull(Scanner fs) {
nPoints = fs.nextInt();
points = new Vec[nPoints];
for (int i = 0; i < nPoints; i++) {
points[i] = new Vec(fs.nextInt(), fs.nextInt());
}
if (area() < 0) {
Vec[] newPoints = new Vec[nPoints];
for (int i = 0; i < nPoints; i++) newPoints[i] = points[nPoints - 1 - i];
points = newPoints;
}
Vec[] sorted = points.clone();
Arrays.sort(sorted, (a, b) -> {
if (a.x != b.x) return Double.compare(a.x, b.x);
return Double.compare(a.y, b.y);
});
int leftInd = 0, rightInd = 0;
for (int i = 0; i < nPoints; i++)
if (points[i] == sorted[0]) leftInd = i;
for (int i = 0; i < nPoints; i++)
if (points[i] == sorted[nPoints - 1]) rightInd = i;
if (rightInd < leftInd) rightInd += nPoints;
lowerHull = new Vec[rightInd - leftInd + 1];
for (int i = leftInd; i <= rightInd; i++) lowerHull[i - leftInd] = points[i % nPoints];
while (leftInd < rightInd) leftInd += nPoints;
upperHull = new Vec[leftInd - rightInd + 1];
for (int i = rightInd; i <= leftInd; i++) upperHull[leftInd - i] = points[i % nPoints];
upperHullSegs = new Seg[upperHull.length - 1];
for (int i = 0; i + 1 < upperHull.length; i++) upperHullSegs[i] = new Seg(upperHull[i], upperHull[i + 1]);
lowerHullSegs = new Seg[lowerHull.length - 1];
for (int i = 0; i + 1 < lowerHull.length; i++) lowerHullSegs[i] = new Seg(lowerHull[i], lowerHull[i + 1]);
for (Seg s: upperHullSegs) {
s.isUpper = true;
s.hull = this;
}
for (Seg s: lowerHullSegs) {
s.isUpper = false;
s.hull = this;
}
}
double area() {
double area = 0;
for (int i = 0; i < points.length; i++) {
area += points[i].cross(points[(i + 1) % nPoints]);
}
return area / 2;
}
// Add events for all lines which aren't vertical.
ArrayList < Event > getEvents() {
if (nPoints == 0) {
// Root query.
return new ArrayList<>();
}
ArrayList < Event > res = new ArrayList<>();
Seg firstUpper = null;
for (Seg s: upperHullSegs) {
if (s.isVertical()) continue;
if (firstUpper == null) firstUpper = s;
res.add(new Event(true, s, null, false));
res.add(new Event(false, s, null, false));
}
for (Seg s: lowerHullSegs) {
if (s.isVertical()) continue;
res.add(new Event(true, s, null, false));
res.add(new Event(false, s, null, false));
}
res.add(new Event(false, firstUpper, null, true));
return res;
}
void calcSubtreeHash() {
for (Hull hh: children) {
hh.calcSubtreeHash();
}
Collections.sort(children);
HarmeyerHash me = new HarmeyerHash();
me.add('(');
for (Hull hh: children) {
me.append(hh.subtreeHash);
}
me.add(')');
this.subtreeHash = me;
}
void calcAllHash(HarmeyerHash prefix, HarmeyerHash suffix) {
prefix = prefix.clone();
suffix = suffix.clone();
allHash = new HarmeyerHash();
allHash.add('s');
allHash.append(prefix);
allHash.add('S');
allHash.append(subtreeHash);
allHash.add('e');
allHash.append(suffix);
allHash.add('E');
// Now we need to calculate this for our kids
prefix.add('('); {
HarmeyerHash temp = new HarmeyerHash();
temp.add(')');
temp.append(suffix);
suffix = temp;
}
HarmeyerHash[] subtreesCS = new HarmeyerHash[children.size() + 1];
subtreesCS[0] = new HarmeyerHash();
for (int i = 1; i <= children.size(); i++) {
subtreesCS[i] = subtreesCS[i - 1].clone();
subtreesCS[i].append(children.get(i - 1).subtreeHash);
}
for (int at = 0; at < children.size(); at++) {
int countIdentical = 1;
while (at + countIdentical < children.size() &&
children.get(at + countIdentical).subtreeHash.equals(
children.get(at).subtreeHash)) {
countIdentical++;
}
HarmeyerHash beforeGroup = subtreesCS[at];
HarmeyerHash afterMe = subtreesCS[children.size()].clone();
afterMe.subHash(subtreesCS[at + 1]);
HarmeyerHash groupPrefix = prefix.clone();
groupPrefix.append(beforeGroup);
HarmeyerHash groupSuffix = afterMe.clone();
groupSuffix.append(suffix);
for (int inGroup = 0; inGroup < countIdentical; inGroup++) {
children.get(at + inGroup).calcAllHash(groupPrefix, groupSuffix);
}
at += countIdentical - 1;
}
}
public int compareTo(Hull o) {
return subtreeHash.compareTo(o.subtreeHash);
}
}
static class QueryPoint {
Query q;
Vec position;
Hull node;
public QueryPoint(Query q, Vec p) {
this.q = q;
this.position = p;
}
Event getEvent() {
return new Event(false, null, this, false);
}
}
static class Query {
QueryPoint qp1, qp2;
public Query(Scanner fs) {
Vec p1 = new Vec(fs.nextInt(), fs.nextInt());
Vec p2 = new Vec(fs.nextInt(), fs.nextInt());
qp1 = new QueryPoint(this, p1);
qp2 = new QueryPoint(this, p2);
}
ArrayList < Event > getEvents() {
ArrayList < Event > res = new ArrayList<>();
res.add(qp1.getEvent());
res.add(qp2.getEvent());
return res;
}
}
static class VecL implements Comparable < VecL > {
long x, y;
public VecL(long x, long y) {
this.x = x;
this.y = y;
}
public VecL add(VecL o) {
return new VecL(x + o.x, y + o.y);
}
public VecL sub(VecL o) {
return new VecL(x - o.x, y - o.y);
}
public VecL scale(long s) {
return new VecL(x * s, y * s);
}
public long dot(VecL o) {
return x * o.x + y * o.y;
}
public long cross(VecL o) {
return x * o.y - y * o.x;
}
public long mag2() {
return dot(this);
}
public VecL rot90() {
return new VecL(-y, x);
}
public VecL rot270() {
return new VecL(y, -x);
}
public String toString() {
return "(" + x + ", " + y + ")";
}
public int hashCode() {
return Long.hashCode(x << 13 ^ (y * 57));
}
public boolean equals(Object oo) {
VecL o = (VecL) oo;
return x == o.x && y == o.y;
}
public int compareTo(VecL o) {
if (x != o.x) return Long.compare(x, o.x);
return Long.compare(y, o.y);
}
// origin->q1, axes-> quadrant in ccw direction
public int quadrant() {
if (x == 0 || y == 0) {
if (y == 0) {
return x >= 0 ? 1 : 3;
}
return y >= 0 ? 2 : 4;
}
if (x > 0) {
return y > 0 ? 1 : 4;
}
return y > 0 ? 2 : 3;
}
public int radialCompare(VecL o) {
if (quadrant() == o.quadrant()) {
return -Long.signum(cross(o));
}
return Integer.compare(quadrant(), o.quadrant());
}
}
static class Vec {
static final double EPS = 1e-6;
double x, y;
public Vec(double x, double y) {
this.x = x;
this.y = y;
}
public Vec add(Vec o) {
return new Vec(x + o.x, y + o.y);
}
public Vec sub(Vec o) {
return new Vec(x - o.x, y - o.y);
}
public Vec scale(double s) {
return new Vec(x * s, y * s);
}
public double dot(Vec o) {
return x * o.x + y * o.y;
}
public double cross(Vec o) {
return x * o.y - y * o.x;
}
public double mag2() {
return dot(this);
}
public double mag() {
return Math.sqrt(mag2());
}
public Vec unit() {
return scale(1 / mag());
}
public Vec rot90() {
return new Vec(-y, x);
}
public Vec rot270() {
return new Vec(y, -x);
}
public Vec rotate(double theta) {
double PI = Math.PI;
double newX = x * Math.cos(theta) + y * Math.cos(PI / 2 + theta);
double newY = x * Math.sin(theta) + y * Math.sin(PI / 2 + theta);
return new Vec(newX, newY);
}
// Angle between 0 and 2PI
public double angle() {
return (Math.atan2(y, x) + 2 * Math.PI) % (2 * Math.PI);
}
public String toString() {
DecimalFormat df = new DecimalFormat("#.##");
return "(" + df.format(x) + ", " + df.format(y) + ")";
}
static boolean eq(double a, double b) {
return Math.abs(a - b) < EPS;
}
static boolean leq(double a, double b) {
return a - EPS < b;
}
static boolean geq(double a, double b) {
return a + EPS > b;
}
public boolean equals(Object oo) {
Vec o = (Vec) oo;
return eq(x, o.x) && eq(y, o.y);
}
}
static class Seg {
Vec from, to, dir;
Hull hull;
boolean isUpper;
double m, b;
public Seg(Vec from, Vec to) {
this.from = from;
this.to = to;
dir = to.sub(from);
if (!isVertical()) {
m = dir.y / dir.x;
b = from.y - m * from.x;
}
}
boolean isVertical() {
return Math.abs(dir.x) < 0.5;
}
double evalAt(double x) {
return m * x + b;
}
//line-line intersection
public Vec lineIntersect(Seg o) {
double det = o.dir.x * dir.y - dir.x * o.dir.y;
if (Vec.eq(det, 0)) {
return null;
}
double dist = (o.dir.x * (o.from.y - from.y) -
o.dir.y * (o.from.x - from.x)) / det;
return from.add(dir.scale(dist));
}
public boolean containsPoint(Vec o) {
double distFromLine = dir.unit().cross(o.sub(from));
if (!Vec.eq(distFromLine, 0)) {
return false;
}
return Vec.eq(dir.mag(), from.sub(o).mag() + to.sub(o).mag());
}
// seg-seg intersection
public Vec segIntersection(Seg o) {
Vec intersect = lineIntersect(o);
if (intersect == null) {
return null;
}
return containsPoint(intersect) && o.containsPoint(intersect) ? intersect
: null;
}
// returns 1 if above, 0 if on, -1 if below
public int side(Vec o) {
Vec oDir = o.sub(from);
double distFromLine = dir.unit().cross(oDir);
if (Vec.eq(distFromLine, 0)) {
return 0;
}
return (int)Math.signum(distFromLine);
}
public boolean intersects(Seg o) {
return side(o.from) != side(o.to) && o.side(from) != o.side(to);
}
public Vec getClosestTo(Vec o) {
double percentThere = o.sub(from).dot(dir) / dir.mag2();
return from.add(dir.scale(Math.max(0, Math.min(1, percentThere))));
}
public Vec projectToLine(Vec o) {
return dir.scale(o.sub(from).dot(dir) / dir.mag2()).add(from);
}
// toContain must be a point with positive x and y coordinates.
// this method returns the shortest line segment from the x-axis to the
// point to the y axis
public static Seg getShortestSegFromAxesContainingQ1Point(Vec toContain) {
double slope = -Math.pow(toContain.y / toContain.x, 1.0 / 3);
double b = toContain.y - toContain.x * slope;
double xInt = -b / slope;
return new Seg(new Vec(0, b), new Vec(xInt, 0));
}
public String toString() {
return from + " -> " + to;
}
}
public static void main(String[] args) throws InterruptedException {
Thread t = new Thread(null, null, "", 1 << 29) {
public void run() {
A(null);
}
};
t.start();
t.join();
}
public static void A(String[] args) {
Scanner fs = new Scanner(System.in);
PrintWriter out = new PrintWriter(System.out);
long time = System.currentTimeMillis();
int T = fs.nextInt();
for (int tt = 0; tt < T; tt++) {
solve(fs, out, tt + 1);
}
fs.close();
out.close();
}
// Cannot use 0 as a character in the strings
static class HarmeyerHash implements Comparable < HarmeyerHash > {
static final long m1 = 8675309, m2 = 1_000_000_007, m3 = 1_000_000_009;
long v1 = 0, v2 = 0, v3;
int l = 0;
static final long s1 = 257, s2 = 619, s3 = 10007;
static long[] s1Pow, s2Pow, s3Pow;
static boolean precomped = false;
void add(char o) {
v1 = (v1 * s1 + o) % m1;
v2 = (v2 * s2 + o) % m2;
v3 = (v3 * s3 + o) % m3;
l++;
}
void subHash(HarmeyerHash smallerPrefix) {
HarmeyerHash old = this;
HarmeyerHash toSub = smallerPrefix;
int diff = this.l - smallerPrefix.l;
old.v1 = (old.v1 - (toSub.v1 * s1Pow[diff]) % m1 + m1) % m1;
old.v2 = (old.v2 - (toSub.v2 * s2Pow[diff]) % m2 + m2) % m2;
old.v3 = (old.v3 - (toSub.v3 * s3Pow[diff]) % m3 + m3) % m3;
l = diff;
}
public int compareTo(HarmeyerHash o) {
if (v1 != o.v1) {
return Long.compare(v1, o.v1);
}
if (v2 != o.v2) {
return Long.compare(v2, o.v2);
}
return Long.compare(v3, o.v3);
}
public boolean equals(Object o) {
return compareTo((HarmeyerHash) o) == 0;
}
public int hashCode() {
return (int)v1;
}
public HarmeyerHash clone() {
HarmeyerHash toReturn = new HarmeyerHash();
toReturn.v1 = v1;
toReturn.v2 = v2;
toReturn.v3 = v3;
toReturn.l = l;
return toReturn;
}
static void precomp() {
if (precomped) {
return;
}
precomped = true;
s1Pow = new long[10_000_000];
s2Pow = new long[10_000_000];
s3Pow = new long[10_000_000];
s1Pow[0] = s2Pow[0] = s3Pow[0] = 1;
for (int i = 1; i < s1Pow.length; i++) {
s1Pow[i] = (s1Pow[i - 1] * s1) % m1;
}
for (int i = 1; i < s2Pow.length; i++) {
s2Pow[i] = (s2Pow[i - 1] * s2) % m2;
}
for (int i = 1; i < s3Pow.length; i++) {
s3Pow[i] = (s3Pow[i - 1] * s3) % m3;
}
}
//need fastPow if o can be longer than 10^6
void append(HarmeyerHash o) {
precomp();
v1 = (v1 * s1Pow[o.l] + o.v1) % m1;
v2 = (v2 * s2Pow[o.l] + o.v2) % m2;
v3 = (v3 * s3Pow[o.l] + o.v3) % m3;
l += o.l;
}
public static HarmeyerHash[] getPrefixHashes(char[] word) {
precomp();
int n = word.length;
HarmeyerHash[] toReturn = new HarmeyerHash[n + 1];
toReturn[0] = new HarmeyerHash();
for (int i = 1; i <= n; i++) {
toReturn[i] = toReturn[i - 1].clone();
toReturn[i].add(word[i - 1]);
}
return toReturn;
}
//inclusive, exclusive
public static HarmeyerHash substringHash(HarmeyerHash[] prefixHashes, int from, int to) {
if (from == to) {
return new HarmeyerHash();
}
HarmeyerHash old = prefixHashes[to].clone(), toSub = prefixHashes[from];
int diff = to - from;
old.v1 = (old.v1 - (toSub.v1 * s1Pow[diff]) % m1 + m1) % m1;
old.v2 = (old.v2 - (toSub.v2 * s2Pow[diff]) % m2 + m2) % m2;
old.v3 = (old.v3 - (toSub.v3 * s3Pow[diff]) % m3 + m3) % m3;
old.l = to - from;
return old;
}
public String toString() {
return "[" + v1 + " " + v2 + " " + v3 + "]";
}
}
} |