Hyperplanes On covering points with minimum turns

For the more general problem of covering n points in Rd by k (not necessarily axis-parallel) hyperplanes, • Langerman and Morin (2005) presented FPT algorithms with both d and k as parameters.

Minghui Jiang

• Grantson and Levcopoulos (2006) and Wang, Li, and Chen (2010) improved the running times.

Utah State University FAW-AAIM

May 14, 2012

Points and Lines

Polygonal Chain with Minimum Turns

The problem of covering a set of points by a minimum number of lines is one of the oldest problems in computational geometry.

Instead of using lines, we can cover the points using a polygonal chain of line segments, with the goal of minimizing the number of links or turns in the chain.

• Megiddo and Tamir (1982) proved that the line cover problem is NP-hard even in R2 .

Given a set of n points in Rd , a chain of line segments that covers all n points is called a covering tour if the chain is closed, and is called a spanning path if the chain is open. A covering tour (or a spanning path) is rectilinear if all segments in the tour (or the path) are axis-parallel.

Axis-parallel Lines For the rectilinear version of the problem in which the lines must be axis-parallel, • Hassin and Megiddo (1991) observed that the problem in R2 reduces to vertex cover in bipartite graphs and hence is solvable in polynomial time, and proved that the problem in R3 in NP-hard by a reduction from 3SAT, • Gaur and Bhattacharya (2007) presented a (d − 1)approximation algorithm for the problem in Rd for all d ≥ 3.

Four Optimization Problems • Minimum-Link Covering Tour • Minimum-Link Rectilinear Covering Tour • Minimum-Link Spanning Path • Minimum-Link Rectilinear Spanning Path

Four Decision Problems • k-Link Covering Tour • k-Link Rectilinear Covering Tour • k-Link Spanning Path • k-Link Rectilinear Spanning Path

On the Negative Side • Kranakis et al. (1994) noted that Minimum-Link Spanning Path in R2 is NP-hard (they credited Clote for this result). • Arkin et al. (2003) proved that Minimum-Link Covering Tour in R2 is NP-hard by a reduction from the line cover problem, which was proved to be NP-hard by Megiddo and Tamir (1982). In contrast to the NP-hardness of (non-rectilinear) MinimumLink Covering Tour and Minimum-Link Spanning Path in R2 . . .

Previous Results

The Open Question

These problems have been extensively studied in terms of both computational complexity and combinatorial bounds:

The complexities of Minimum-Link Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in Rd for any fixed d ≥ 2 remain unknown, even for the simplest case that all points are in the plane and no two points share the same x or y coordinate.

Kranakis et al. (1994), Collins and Moret (1998), Stein and Wagner (2001), Arkin et al. (2003), Collins (2004), Wagner (2006), Bereg et al. (2009). See also Fekete and Woeginger (1997), Aggarwal et al. (1999), Arkin et al. (2005) for results on related problems.

On the Positive Side • Stein and Wagner (2001) presented an O(log n) approximation for Minimum-Link Covering Tour in R2 (using the approximation for set cover). For the rectilinear versions of the problems, • Stein and Wagner (2001) presented a 2-approximation for Minimum-Link Rectilinear Covering Tour in R2 , • Bereg et al. (2009) presented a 2-approximation for Minimum-Link Rectilinear Spanning Path in R2 and a d 2 -approximation for Minimum-Link Rectilinear Spanning Path in Rd for all d ≥ 3.

Best Possible Approximations? Interestingly, for this simplest case, • Stein and Wagner (2001) presented an approximation algorithm for Minimum-Link Rectilinear Covering Tour that uses at most 2 more turns than the optimal, • Bereg et al. (2009)’s constructive proof for a related combinatorial bound implies an approximation algorithm for Minimum-Link Rectilinear Spanning Path that uses at most 1 more turn than the optimal.

Some Recent Results Estivill-Castro et al. (2010) reported NP-hardness proofs for Minimum-Link Rectilinear Covering Tour and for MinimumLink Rectilinear Spanning Path in R3 , and presented several FPT algorithms for k-Link Rectilinear Covering Tour and its variants in R2 . Their NP-hardness proofs are reminiscent of the NP-hardness proof of Hassin and Megiddo (1991) for the related problem of rectilinear line cover in R3 . Their FPT algorithms are based on standard kernelization and bounded search tree techniques as in the previous work of Langerman and Morin (2005) on covering points by lines and hyperplanes.

Our Findings • We point out mistakes in their FPT algorithms. • We show that their NP-hardness proofs for MinimumLink Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in R3 are incorrect. • We present new NP-hardness proofs for Minimum-Link Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in R10 .

The mistake in this algorithm is that it neglected the possibility that a segment in T may cover at least two points but either none or only one of these points is included in the reduced instance. In particular, a point may not be included in the reduced instance if it is on a line in Lk+1 but is not one of the two extreme points. Consequently, the line supporting this segment may not be included in R and hence may not be used in enumerating tours.

Mistakes in FPT Algorithms (ii) We next point out a mistake in the FPT algorithm for the problem k-Link Covering Tour with the constraint that “one line-segment covers all points on the same line”. This algorithm depends on the same lemma that “if a tour T has the minimum number of turns, then every line segment in T covers at least two points”, which was proved by a translation/rotation argument. While the argument is valid for the problem without constraint, it does not hold for the problem with constraint.

Mistakes in FPT Algorithms (i) We first point out a mistake in the FPT algorithm for the problem k-Link Covering Tour. This algorithm uses a kernelization procedure to find a set Lk+1 of at most k lines, where each line covers at least k + 1 points, then obtains a reduced instance of at most 2k + k 2 points, including the two extreme points of each line in Lk+1 , and the at most k 2 points not covered by any line in Lk+1 . The algorithm then finds the set R of all lines through at least two points in the reduced instance, and enumerates tours based on the lines in R. The choice of the set R depends on a lemma which states that “If a tour T has the minimum number of turns, then every line segment in T covers at least two points.”

y

x

The point set consists of 11 points: (1, 0), (2, 0), (3, 0), (0, 1), (0, 2), (0, 3), (0, 4), (−5, 0), (−4, 1), (−3, 2), (−2, 3). The number of turns is 4.

y

y

x

It is clear that no tour can cover these 11 points with less than 4 turns. On the other hand, these 11 points can be covered by a tour with 4 turns at (3, 0), (−5, 0), (0, 5), and (0, −1), where each segment in the tour covers all points on the line supporting the segment.

y

x

Suppose the contrary that one of these three lines does not host a segment, then each of the four points on this line must be covered by a distinct segment in the tour. It is easy to verify (by a case analysis) that the four segments through the four points cannot cover the other seven points.

y

x

Proposition 1. In any tour with 4 turns that covers the 11 points under the constraint, there is at least one segment that covers either a single point or no point at all.

y

x

Now, the segment on the horizontal line y = 0 must contain the four points (−5, 0), (1, 0), (2, 0), and (3, 0) because of the constraint, so it cannot be consecutive with the segment on the vertical line x = 0.

y

x

Observe that each of the three lines y = 0, x = 0, and y − x = 5 covers four points. We claim that the tour must include one segment from each of these three lines.

x

Thus we can assume, up to symmetry, that the segment on y = 0 is followed by the segment on y − x = 5, which is then followed by the segment on x = 0.

y

y

x

x

Now consider the fourth segment that closes the tour. This segment cannot be the segment between the two points (0, 1) and (3, 0) because then it would miss the point (−3, 2) which is on the same line. Similarly, it cannot be on the horizontal line y = 0. Indeed this fourth segment can contain at most one point, either (0, 1) or (3, 0).

After reducing the point set to a kernel of size at most k 2 , the algorithm for the problem with constraint simply enumerates tours based on the lines through at least two points in the kernel as justified by this lemma. The point set in our counterexample is already a kernel by their criteria because no line can covered more than k = 4 points. Since the lemma is no longer valid for the problem with constraint, the algorithm fails to find a solution to our counterexample. (Another mistake in this algorithm is that the enumeration of tours in the kernel is done with no regard to the points outside the kernel. Consequently, there may be segments through at least two points in the kernel that miss points on the same line but outside the kernel. This may lead to invalid tours that violate the constraint.)

Mistakes in FPT Algorithms (iii)

The point set consists of 16 points: (i , j) for 0 ≤ i ≤ 3 and 0 ≤ j ≤ 3. The number of turns is 8. Observe that any rectilinear tour that covers the 16 points under the constraint must contain either four horizontal segments on the four lines y = j, 0 ≤ j ≤ 3, or four vertical segments on the four lines x = i , 0 ≤ i ≤ 3. Assume the former without loss of generality.

y

x Then to connect the four horizontal segments into a rectilinear tour with 8 turns, we need two vertical segments with x-coordinates less than 0 and two vertical segments with xcoordinates more than 3. To translate these four vertical segments until they cover points would violate the constraint.

y

There is a similar mistake in the FPT algorithm for the problem k-Link Rectilinear Covering Tour with the constraint that “one line-segment covers all points on the same line”. This algorithm only considers “tours where every line-segment covers at least one point.” To justify this, they argued that “If a line-segment in the tour covers no points, it can be translated in parallel until it is placed over one point.” Again, this argument is valid for the problem without constraint but does not hold for the problem with constraint.

x The algorithm for the rectilinear problem with constraint always outputs a tour in which every segment covers at least one point. Consequently, the algorithm either fails to find a solution, or finds an invalid solution, to our counterexample.

Mistakes in NP-hardness Proofs We show that the previous NP-hardness proofs for MinimumLink Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in R3 are incorrect. We briefly review the NP-hardness proof for Minimum-Link Rectilinear Covering Tour in R3 , which is based on a reduction from the NP-hard problem One-In-Three 3-SAT.

The building blocks of each variable gadget are arranged in the space to pass through the clause gadgets of all clauses that contain the variable. They observed that to connect the separate minimum tours for the variable gadgets into a single complete tour, it takes only two additional turns to merge any two tours into one. Their example corresponds to the following transformation: •⊕◦ 1

Given a 3-SAT formula with n′ variables and m clauses, the construction includes one variable gadget for each variable, and one clause gadget for each clause.

1

•⊕◦ 2

−→

2

• ⊕ ◦′

1′

2

• ⊕ ◦′

1′

2

where the two links 1 and 2 are replaced by two 2-segment chains 1′ and 2′ .

The building block of the construction, consists of 22 linesegments arranged in two groups, with 11 segments in each group following a similar pattern, where each segment is represented by a large number of points on it.

From this observation, they concluded that the 3-SAT formula has a satisfying one-in-three assignment if and only if the point set thus constructed admits a rectilinear tour with 34mn′ + 2(n′ − 1) turns.

They claimed that each building block, when considered alone, admits only two minimum rectilinear tours with 34 turns. These two tours can be represented schematically as

We note that the if direction of this lemma does not hold. Specifically, its proof overlooked the fact that there could be many different ways to merge the separate tours, which may disrupt the repeated pattern in each variable gadget.

•⊕◦

and

◦⊖•

where ⊕ and ⊖ stand for the two different ways to traverse segments 2–21 depending on the directions • ◦ or ◦ • in which the two segments 1 and 22 are traversed.

Each variable gadget consists of m building blocks. They claimed that each variable gadget, when considered alone, admits only two minimum rectilinear tours with 34m turns • ⊕ ◦ • ⊕ ◦ ··· • ⊕ ◦ • ⊕ ◦ 1

m m

2 2

1

For example, when n′ = 3 and m = 2, we can merge the n = 3 separate tours into a complete tour with 2(n′ − 1) = 4 additional turns as follows ′

1

2 2

3

◦ ⊖ • ◦ ⊖ • ··· ◦ ⊖ • ◦ ⊖ • 1

m m

2 2

1

where each pair • i

and

◦ i

of the same index i represent two “adjacent” segments parallel to the z-axis that are connected by one link parallel to either the x-axis or the y -axis.

4 4

3

•⊕◦•⊕◦ 5

6 6

1′

1

•⊕◦•⊕◦

and

• ⊕ ◦ • ⊕ ◦′

•⊕◦•⊕◦

5

−→

2 2

3

• ⊕ ◦′ ◦′ ⊖ •′

1′

4 3

5

• ⊕ ◦ • ⊕ ◦′

5′

6 6

4

where the four links 1, 3, 4, and 5 are replaced by four 2segment chains 1′ , 3′ , 4′ , and 5′ , and the pattern in the second variable gadget is disrupted. Because of the disrupted patterns, it is possible that the point set admits a tour with 34mn′ + 2(n′ − 1) turns but the 3-SAT formula does not have a satisfying one-in-three assignment.

For a complete counterexample, consider the following 3SAT formula with n′ = 4 variables and m = 4 clauses: (u1 ∨ u2 ∨ u3 ) ∧ (u1 ∨ u2 ∨ u4 ) ∧ (u1 ∨ u3 ∨ u4 ) ∧ (u2 ∨ u3 ∨ u4 ) A satisfying one-in-three assignment for this formula must have exactly 4 true literals, one in each clause. But the number of true literals of any assignment is a multiple of 3, since each variable has exactly three positive literals. Thus this formula does not have any satisfying one-in-three assignment. If the boolean assignment is allowed to be inconsistent, for example, u1 is true, u3 and u4 are false, but u2 is false in the first two clauses and is true in the fourth clause, then the formula would have exactly one true literal in each clause.

In our counterexample, the separate tours for the variable gadgets are cut open between building blocks. We did this for a clean presentation. Indeed these separate tours could be cut open at other places too, in particular, between any two parallel segments within a building block, such as segments 1 and 2, 2 and 3, 4 and 9, etc. A divided building block does not function as an atomic unit, and hence loses its boolean property to encode true or false. This would yield other, more complicated, counterexamples. We have shown that the NP-hardness proof for MinimumLink Rectilinear Covering Tour in R3 does not hold. For the same reason, the NP-hardness proof for MinimumLink Rectilinear Spanning Path in R3 does not hold either.

New NP-hardness Proofs • ⊕ ◦ • ⊕ ◦ • ⊕ ◦ • ⊕ ◦′

•⊕◦•⊕◦•⊕◦•⊕◦

a′

a

a

◦⊖•◦⊖•◦⊖•◦⊖• b

e e

b

◦⊖•◦⊖•◦⊖•◦⊖•

−→

c

c

b

a e

d

◦ ⊖ • ◦ ⊖ • ◦ ⊖ • ◦ ⊖ •′ c

b′

◦⊖•◦⊖•◦⊖•◦⊖•

◦ ⊖ • ◦ ⊖ • ◦ ⊖ • ◦ ⊖ •′

d

d

e

◦′ ⊖ • ◦ ⊖ • ◦ ⊖ •′ •′ ⊕ ◦′

c

d′

This inconsistent assignment corresponds to the above complete tour with a disrupted pattern in the second variable gadget (for simplicity, only indices of modified links are shown).

• ⊕ ◦ • ⊕ ◦ • ⊕ ◦ • ⊕ ◦′

•⊕◦•⊕◦•⊕◦•⊕◦

a′

a

a

◦⊖•◦⊖•◦⊖•◦⊖• b

e e

b

◦⊖•◦⊖•◦⊖•◦⊖• c

c

◦⊖•◦⊖•◦⊖•◦⊖• d

d

−→

e

◦′ ⊖ • ◦ ⊖ • ◦ ⊖ •′ •′ ⊕ ◦′

b

a e

d

◦ ⊖ • ◦ ⊖ • ◦ ⊖ • ◦ ⊖ •′

b′

c

◦′ ⊖ • ◦ ⊖ • ◦ ⊖ • ◦ ⊖ •′

d

c

Theorem 1. Minimum-Link Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in R10 are both NPhard. We first prove the NP-hardness of Minimum-Link Rectilinear Covering Tour in R10 by a reduction from the NP-hard problem Hamiltonian Circuit in grid graphs (Itai, Papadimitriou, and Szwarcfiter 1982). A grid graph is a finite, vertex-induced, subgraph of the infinite graph with the points of integer coordinates in the plane as vertices, and with an edge between two vertices if and only the corresponding points have Euclidean distance exactly 1.

For any two points pk and pl , we denote pk ≺xy pl if either xk < xl or xk = xl and yk < yl , and denote pk ≺x y¯ pl if either xk < xl or xk = xl and yk > yl . For each point pi , we denote by rankxy (pi ) and rankx y¯ (pi ) the ranks of pi in P ordered by ≺xy and ≺x y¯ , respectively. y

y

1

2

3

4

5

6

7

8

9

10

1 2

Each of a′ , b′ , c ′ , d ′ consists of two segments, one parallel to the x-axis and one parallel to the y -axis; e ′ consists of three segments, with an additional middle segment parallel to the z-axis. These five chains together incur 1 + 1 + 1 + 1 + 2 = 6 = 2(n′ − 1) more turns in addition to the 34mn′ turns of the separate tours of the variable gadgets.

3 4

5

7

i rankxy (pi ) rankx y¯(pi )

1 3 1

2 6 4

3 2 2

8 11

x

4 5 5

5 8 7

6

6 10 9

9 12

7 1 3

10 13

8 4 6

x

9 7 8

10 9 10

The Construction

The Proof

Let G be a grid graph specified by a set P of n grid points pi = (xi , yi ) ∈ Z2 , 1 ≤ i ≤ n, and let E be the set of m edges ej , 1 ≤ j ≤ m. We will construct a corresponding set Q of n grid points qi = (ai , bi , ci , di , ri , si , ti , ui , vi , wi ) ∈ R10 , 1 ≤ i ≤ n, such that G has a Hamiltonian circuit if and only if Q has a rectilinear tour of 8n turns.

The following property of the construction can be easily verified by a case analysis:

For each point qi , 1 ≤ i ≤ n, we set the four coordinates ri , si , ti , ui to rankxy (pi ) and set the two coordinates vi , wi to rankx y¯(pi ), then initialize the four coordinates ai , bi , ci , di to the index i .

Next, for each point pi , and for each edge ej that connects qi to another point qk , we update the four coordinates ai , bi , ci , di of qi according to the following cases:

Lemma 1. For any two points qi and qj in Q, if the corresponding points pi and pj are adjacent in G, then qi and qj share one coordinate along one of the first 4 axes and have distinct coordinates along the other 9 axes, otherwise they have distinct coordinates along all 10 axes. Our reduction is clearly polynomial. To complete the proof of the NP-hardness of Minimum-Link Rectilinear Covering Tour in R10 , it remains to prove the following lemma: Lemma 2. G has a Hamiltonian circuit if and only if Q has a rectilinear tour of 8n turns.

1

4

5 2

6

3

1. yk = yi (then xk = xi − 1 or xk = xi + 1) (a) If xi is xk = xi (b) If xi is xk = xi

odd and xk = xi − 1, or if xi is even and + 1, set ai ← n + j. odd and xk = xi + 1, or if xi is even and − 1, set bi ← n + j.

2. xk = xi (then yk = yi − 1 or yk = yi + 1) (a) If yi is yk = yi (b) If yi is yk = yi

odd and yk = yi − 1, or if yi is even and + 1, set ci ← n + j. odd and yk = yi + 1, or if yi is even and − 1, set di ← n + j.

y

We first prove the direct implication. Suppose that G has a Hamiltonian circuit H. We will construct a rectilinear tour of 8n turns for Q. For each point pi in P , select a line Li through the corresponding point qi in Q and parallel to one of the six axes r, s, t, u, v , w according to the following six cases about the two points pk and pl immediately before and after pi in H:

y

1

2

1

1

4

5 2

3

2 3

4

6

5

4 7

7

8

9

1 11 1 1 12 3 3 3 3 1 1

2 11 2 2 13 6 6 6 6 4 4

6 9

6

3

10

10 11

x

i ai bi ci di ri si ti ui vi wi

5 8

3 14 3 17 12 2 2 2 2 2 2

4 14 15 18 13 5 5 5 5 5 5

5 16 15 19 5 8 8 8 8 7 7

6 16 6 20 6 10 10 10 10 9 9

12

7 21 7 17 7 1 1 1 1 3 3

13

8 21 22 18 8 4 4 4 4 6 6

x

9 23 22 19 9 7 7 7 7 8 8

10 23 10 20 10 9 9 9 9 10 10

1. yk = yi = yl (then xk < xi < xl or xl < xi < xk ): r for odd xi , s for even xi . 2. xk = xi = xl (then yk < yi < yl or yl < yi < yk ): r for odd yi , s for even yi . 3. xi = min{xk , xl } and yi = max{yk , yl }: t 4. xi = max{xk , xl } and yi = min{yk , yl }: u 5. xi = min{xk , xl } and yi = min{yk , yl }: v 6. xi = max{xk , xl } and yi = max{yk , yl }: w

1

4

5 2

6

3

Let Si ⊂ Li be the rectilinear segment containing all points with coordinate between the coordinates of qk and ql (along the axis parallel to Li ). Recall that ri = si = ti = ui = rankxy (pi ) and vi = wi = rankx y¯(pi ). By our axis assignment, Si must contain qi in the interior.

For example, suppose that qi and ql share the same coordinate ai = al = aˆ along the a-axis, and that Si and Sl are parallel to the r -axis and the w -axis, respectively. Then Si and Sl can be connected by 7 segments with 8 turns: qi = (ai , bi , ci , di , ri , si , ti , ui , vi , wi ) → Si → (ˆ a, bi , ci , di , rl , si , ti , ui , vi , wi ) (ˆ a, bl , ci , di , rl , si , ti , ui , vi , wi ) (ˆ a, bl , cl , di , rl , si , ti , ui , vi , wi ) (ˆ a, bl , cl , dl , rl , si , ti , ui , vi , wi ) (ˆ a, bl , cl , dl , rl , sl , ti , ui , vi , wi ) (ˆ a, bl , cl , dl , rl , sl , tl , ui , vi , wi ) (ˆ a, bl , cl , dl , rl , sl , tl , ul , vi , wi ) (ˆ a, bl , cl , dl , rl , sl , tl , ul , vl , wi ) → Sl → (al , bl , cl , dl , rl , sl , tl , ul , vl , wl ) = ql .

Altogether, exactly 8n turns in the rectilinear tour for Q.

1

4

5 2

6

3

Observe that in any Hamiltonian circuit of G, • a turn of type 3, 4, 5, or 6 cannot be consecutive with another turn of the same type, • a turn of type 1 or 2 is consecutive with another turn of the same type only if the middle vertices of the two turns are adjacent and hence have different parities, • a turn of type 1 cannot be consecutive with a turn of type 2.

We next prove the reverse implication. Suppose that Q has a rectilinear tour R of 8n turns. We will find a Hamiltonian circuit in G. Consider any two points qi and qj in Q that are consecutively covered by R. By Lemma 1, the two points have distinct coordinates along at least 9 of the 10 axes. As a point moves in a rectilinear segment, only one of its coordinates changes. Therefore, besides the 2 segments Si and Sj that contain qi and qj respectively, the chain of segments connecting qi and qj must include at least 7 other segments, and hence at least 8 turns.

Thus by our choice of axis assignment, Si is parallel to neither Sk nor Sl .

To connect the n segments Si , 1 ≤ i ≤ n, into a rectilinear tour, we add 7n segments. Specifically, for each point pi and its immediate successor pl in the Hamiltonian circuit H, we add 7 more segments between the two segments Si and Sl . Note that pi and pl are adjacent in G. So it follows by Lemma 1 that qi and ql share exactly one coordinate along one of the first four axes. Recall that the two segments Si and Sl , which contain the two points qi and ql respectively, are not parallel to each other, but each of them is parallel to one of the last six axes. To connect the two segments Si and Sl , we use one segment parallel to each axis except these three axes.

Since R has exactly 8n turns, it follows that each point in Q must be covered exactly once, and there must be exactly 8 turns between any two points that are covered consecutively. Any two consecutively covered points qi and qj in Q with 8 turns in between must have distinct coordinates along at most 9 axes. By our construction, they must correspond to two adjacent points pi and pj in P . Thus the rectilinear tour R for Q corresponds to a Hamiltonian circuit in the grid graph G specified by P . This completes the proof.

Tour Done, Now Path. . .

Turing Reduction

We have proved the NP-hardness of Minimum-Link Rectilinear Covering Tour in R10 by a reduction from Hamiltonian Circuit in grid graphs.

Given an instance (P, pi , pj ) of Hamiltonian Path in grid graphs,

Can we prove the NP-hardness of Minimum-Link Rectilinear Spanning Path in R10 by a reduction from Hamiltonian Path in grid graphs? Hamiltonian Path in grid graphs is indeed NP-hard too (Itai, Papadimitriou, and Szwarcfiter 1982). However, an instance of Hamiltonian Path in grid graphs consists of not only a grid graph G specified by a set P of n grid points as in Hamiltonian Circuit in grid graphs, but also two special points pi and pj in P marked as the starting and ending vertices.

Construct the point set Q corresponding to the point set P as before, then specify the two points qi and qj in Q as the first and last points to be covered by a rectilinear path. Lemma 3. G has a Hamiltonian path from pi to pj if and only if Q has a rectilinear spanning path of 8(n − 1) turns from qi to qj . The proof is almost identical to that of Lemma 2 except that the spanning path from qi to qj need not be closed into a tour—this saves 7 segments and hence 8 turns. Also note the technicality that there is no point before the first point or after the last point in the Hamiltonian path. Without loss of generality, we categorize such degenerate cases into either case 1 or case 2 of the six cases.

No Starting, No Ending We have proved the NP-hardness of Minimum-Link Rectilinear Spanning Path with specified starting and ending points in R10 . How about Minimum-Link Rectilinear Spanning Path without specified starting and ending points?

• first construct a corresponding instance (Q, qi , qj ) of Minimum-Link Rectilinear Spanning Path (with specified starting and ending points) in R10 , • then augment the point set Q to 400 instances (without specified starting and ending points) by enumerating all possible combinations of directions to extend the two end segments of a spanning path of Q from qi to qj . (Since there are 10 axes and each axis has both a positive direction and a negative direction, there are (10 · 2)2 = 400 combinations of directions.)

For each combination of directions, we augment the point set Q to Q′ by adding two dummy points qi′ and qj′ : • qi′ is farther than qi in the direction that extends the end segment at qi ; • qj′ is farther than qj in the direction that extends the end segment at qj . Moreover, • qi′ (respectively, qj′ ) has the same coordinate as qi (respectively, qj ) along one of the last 6 axes and has a distinct coordinate different from all others along each of the other 9 axes. (Recall that all points in Q have distinct coordinates along each of the last 6 axes.)

Lemma 4. G has a Hamiltonian path from pi to pj if and only if at least one of the 400 instances of Q′ has a rectilinear spanning path of 8(n + 1) turns. For the direct implication, suppose that G has a Hamiltonian path from pi to pj . Then, by Lemma 3, Q has a rectilinear spanning path of 8(n − 1) turns from qi to qj . At least one of the 400 instances of Q′ correctly guesses the directions to extend the two end segments of Q, and hence needs only 8 turns to connect qi′ to qi and another 8 turns to connect qj′ to qj . This yields an extended rectilinear spanning path of 8(n+1) turns from qi′ to qj′ .

For the reverse implication, the crucial observation is that the two dummy points qi′ and qj′ only share coordinates with the two end points qi and qj , respectively. Thus under the constraint of at most 8 turns between any two consecutively covered points in a spanning path, we must have qi′ and qj′ at the two ends, and have qi and qj next to qi′ and qj′ , respectively. Then the same argument as in the proof of Lemma 2 completes the proof.

Concluding Remarks While we have pointed out mistakes in several previous algorithms for k-Link Rectilinear Covering Tour and its variants in R2 , we still believe that these problems are most likely in FPT—we wait for the authors to fix their algorithms. As to the NP-hardness of Minimum-Link Rectilinear Covering Tour and Minimum-Link Rectilinear Spanning Path in R3 , the situation is less clear. It may be possible to adapt our grid graph technique to prove the NP-hardness of the two problems in Rd for d slightly less than 10, but to get to R3 or even R2 seems to require new ideas.

Points and Lines Axis-parallel Lines Hyperplanes ... - Semantic Scholar

with constraint, the algorithm fails to find a solution to our counterexample. (Another ..... rankx ¯y(pi ), then initialize the four coordinates ai ,bi ,ci ,di to the index i.

127KB Sizes 1 Downloads 348 Views

Recommend Documents

Points and Lines Axis-parallel Lines Hyperplanes ... - Semantic Scholar
segments in the tour (or the path) are axis-parallel. Four Optimization Problems. • Minimum-Link Covering Tour. • Minimum-Link Rectilinear Covering Tour.

The Feuerbach Point and Euler lines - Semantic Scholar
Jun 4, 2006 - Bogdan Suceav˘a: Department of Mathematics, California State University, Fullerton, CA 92834-. 6850, USA. E-mail address: [email protected]. Paul Yiu: Department of Mathematical Sciences, Florida Atlantic University, Boca Raton, F

The Feuerbach Point and Euler lines - Semantic Scholar
Jun 4, 2006 - If A is the midpoint of BC, it is well known that AH = 2 · OA. Consider the excircle (Ia) on the side BC, with radius ra. The midpoint of IIa.

eCounty Lines -
LEADING OFF: Federal Spending Bill Fully Funds PILT, Reauthorizes SRS. There is good news for Colorado counties in the $1.3 trillion federal spending bill Congress passed last week. In addition to funding the federal government through September 30,

tight lines
bank balance and lack of holidays make me realise that this is not something that can be done on a regular basis. (Steve Long ... In the article Horsey states that he already thought Tasmania had the best Stillwater trout fishery in the world and he

Parallel and Perpendicular Lines
November 01, 2012. Parallel and Perpendicular Lines. Graph the Lines. Slope. Rise. Run y intercept. Graph the Lines. Slope. Rise. Run y intercept. Conclusion: ...

to Bulletin - Surplus Lines Clearinghouse
Apr 22, 2015 - Business rules for calculating the correct service fee will be programmed into FSLSO's management system. No changes will be needed for ...

Behind enemy lines
the implementation of artificial immune-system architectures7, able to protect ... consider a parallel network reserved for the spreading of the immunizing agent.

Behind enemy lines
the contact networks that define the computers' connectivity pattern. On page 184 of this issue,. Goldenberg et al.1 propose an immunization system.

Boundary Lines new.pdf
17th Parallel---------North Vietnam and South Vietnam. Hindenburg Line-------- Germany and Poland. Maginot Line-----France and Germany. Oder Neisse ...

Horizontal and Vertical Lines
... is a constant, makes a. line. The slope is. When. , there is. , where is a constant, makes a. line. The slope is. The -intercept is ______. Homework: p. 303 C1 #4-7.

Dry Pasta Lines - Wikimedia Commons
Sep 1, 2011 - Pasta Institute of Technology | 7610 Coral Drive, West Melbourne, Florida 32904-1102 USA. Long Goods Dry ... automated with computer controls making the process hands free. A typical .... All articles are peer reviewed by ...

Metro lines-stations_gretlsite.pdf
... нужно составлять в 2-х экземплярах- один отдавать в. Как. получить налоговый вычетза обучение?. подготовить декларацию 3-НДФЛ за обучени

43017 ELECTRO MAGNETIC WAVES AND TRANSMISSION LINES
b) Derive expression for reflection coefficient of a wave on dielectric when incident normally. ... average power flowing across a square whose each side is 2m.

Equipotential Lines Notes.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Equipotential ...

to Bulletin - Surplus Lines Clearinghouse
Apr 22, 2015 - Transactions reported to the Clearinghouse for NIMA associate member ... information technology vendor or staff regarding needed revisions to ...

Untitled - Angel Between the Lines
CELLPHONE IS ANSWERED.) .... perfume and even cheaper jewelry. ..... can put my escape plan into effect the ..... I understand her kids only want the best.

eCounty Lines - Colorado Counties, Inc.
Mar 27, 2018 - LEADING OFF: Federal Spending Bill Fully Funds PILT, Reauthorizes SRS. There is good news for Colorado counties in the $1.3 trillion federal spending bill Congress passed last week. In addition to funding the federal government through

Untitled - Angel Between the Lines
You need to call Fran's ... 009_002 Setting: Conference Room/ Office Lobby / Office .... 009_003 SETTING: Conference Room/ Demon Bar (Sunnydale).

Bass Lines - Blue Moon.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Bass Lines ...

First Lines Display Covers1.pdf
and Moulin Rouge. The. Eiffel Tower and the Arc. de Triomphe, although I. have no idea what the. function of either is. Na- poleon, Marie Antoi- nette, and a lot of kings. named Louis.” “In a hole in the ground. there lived a hobbit. Not. a nasty