Upload code_segments/segment_294.txt with huggingface_hub
Browse files
code_segments/segment_294.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[Ken Arai - COMPLEX](https://soundcloud.com/diatomichail2/complex)
|
2 |
+
|
3 |
+
⠀
|
4 |
+
|
5 |
+
This is the hard version of the problem. In this version, the constraints on $n$ and the time limit are higher. You can make hacks only if both versions of the problem are solved.
|
6 |
+
|
7 |
+
A set of (closed) segments is complex if it can be partitioned into some subsets such that
|
8 |
+
|
9 |
+
* all the subsets have the same size; and * a pair of segments intersects if and only if the two segments are in the same subset.
|
10 |
+
|
11 |
+
You are given $n$ segments $[l_1, r_1], [l_2, r_2], \ldots, [l_n, r_n]$. Find the maximum size of a complex subset of these segments.
|
12 |
+
|
13 |
+
Each test contains multiple test cases. The first line contains the number of test cases $t$ ($1 \le t \le 10^3$). The description of the test cases follows.
|
14 |
+
|
15 |
+
The first line of each test case contains a single integer $n$ ($1 \le n \le 3 \cdot 10^5$) — the number of segments.
|
16 |
+
|
17 |
+
The second line of each test case contains $n$ integers $l_1, l_2, \ldots, l_n$ ($1 \le l_i \le 2n$) — the left endpoints of the segments.
|
18 |
+
|
19 |
+
The third line of each test case contains $n$ integers $r_1, r_2, \ldots, r_n$ ($l_i \leq r_i \le 2n$) — the right endpoints of the segments.
|
20 |
+
|
21 |
+
It is guaranteed that the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$.
|
22 |
+
|
23 |
+
For each test case, output a single integer: the maximum size of a complex subset of the given segments.
|
24 |
+
|
25 |
+
In the first test case, all pairs of segments intersect, therefore it is optimal to form a single group containing all of the three segments.
|
26 |
+
|
27 |
+
In the second test case, there is no valid partition for all of the five segments. A valid partition with four segments is the following: $\\{\\{ [1, 5], [2, 4] \\}, \\{ [6, 9], [8, 10] \\}\\}$.
|
28 |
+
|
29 |
+
In the third test case, it is optimal to make a single group containing all the segments except the second.
|