Scheduling unit processing time arc shutdown jobs to maximize network flow over time: complexity results

Size: px
Start display at page:

Download "Scheduling unit processing time arc shutdown jobs to maximize network flow over time: complexity results"

Transcription

1 Scheduling unit processing time arc shutdown jobs to maximize network flow over time: complexity results Natashia Boland Thomas Kalinowski Reena Kapoor Simranjit Kaur Abstract We study the problem of scheduling maintenance on arcs of a capacitated network so as to maximize the total flow from a source node to a sink node over a set of time periods. Maintenance on an arc shuts down the arc for the duration of the period in which its maintenance is scheduled, making its capacity zero for that period. A set of arcs is designated to have maintenance during the planning period, which will require each to be shut down for exactly one time period. In general this problem is known to be NP-hard. Here we identify a number of characteristics that are relevant for the complexity of instance classes. In particular, we discuss instances with restrictions on the set of arcs that have maintenance to be scheduled; series parallel networks; capacities that are balanced, in the sense that the total capacity of arcs entering a (non-terminal) node equals the total capacity of arcs leaving the node; and identical capacities on all arcs. Introduction Many real life systems can be viewed as a network with arc capacities, supporting the flow of a commodity. For example, transportation networks, or supply chains, may on occasion be viewed this way. We were motivated by a particular coal export supply chain [4], in which maximizing throughput is a key concern. Whilst this suggests a maximum flow model would be appropriate, in fact, the real network is not static: capacities change over time, and in particular, some arcs are shut down for maintenance at certain times. Often there is some flexibility in the time when maintenance jobs can be scheduled. Every maintenance schedule will incur some loss in the total throughput of the network. To obtain maximum throughput, it is important to select the schedule that leads to minimum loss of flow. For example consider the network in Figure 1 with three nodes {s, v, t}, three arcs {a, b, c} and given arc capacities. The total throughput possible in two time s a 5 b 4 v 7 c Figure 1: Example network. periods when no arcs are on maintenance is 14 units. Suppose that arc a and b have to go on maintenance for a unit period of processing time in a time horizon of two periods. The two possible schedules are either put both the arcs a and b on maintenance together in the first time period giving a total throughput of 7 units in two time periods or put the arc a in first time period and arc submitted

2 b in second time period giving the total throughput of 9 units in the two time periods. Clearly the second schedule is better than the first one as it is giving less loss of flow. This leads to a model in which arc maintenance jobs need to be scheduled so as to maximize the total flow in the network over time [1, 2, 3]. In this paper we consider the case of this problem in which all maintenance jobs have unit processing time. The problem is defined over a network N = (V, A, s, t, u) with node set V, arc set A, source s V, sink t V and nonnegative integral capacity vector u = (u a ) a A. Note that we permit parallel arcs, i.e. there may exist more than one arc in A having the same start and end node, so A is a multiset. By δ (v) and δ + (v) we denote the set of incoming and outgoing arcs of node v, respectively. We consider this network over a set of T time periods indexed by the set [T ] := {1, 2,..., T }, and our objective is to maximize the total flow from s to t. In addition, we are given a subset J A of arcs that have to be shut down for exactly one time period in the time horizon. In other words, there is a set of maintenance jobs, one for each arc in J, each with unit processing time. Our optimization problem is to choose these outage time periods in such a way that the total flow from s to t is maximized. More formally, this can be written as a mixed binary program as follows: T max z = x ai (1) i=1 a δ + (s) a δ (s) x ai s.t. x ai u a a A \ J, i [T ], (2) x ai u a y ai a J, i [T ], (3) T y ai = T 1 a J, (4) i=1 a δ (v) x ai = a δ + (v) x ai v N \ {s, t}, i [T ], (5) x ai 0 a A, i [T ], (6) y ai {0, 1} a J, i [T ], (7) where x ai 0 for a A and i [T ] denotes the flow on arc a in time period i, and y ai {0, 1} for a J and i [T ] indicates when the arc a is not shut down for maintenance in time period i, i.e. y ai = 0 in the period i in which the outage for arc a is scheduled. To the best of our knowledge, Boland et al. [1, 2, 3] initiated study on the problem with general processing times. In [1, 2], the coal supply chain application, which has a number of additional side constraints, is modelled and solved using a rolling time horizon mixed integer programming approach. In [3], the complexity of the general problem is established, and four local search heuristics are developed and compared. We are not aware of any other studies on this problem. Several authors have studied dynamic network flows. For instance [6] studied the problem of finding the maximum flow that can be sent from a source to a sink in T time units, in a network with transit times on the arcs. Variations of the dynamic maximum flow problem with zero transit times are discussed in [5], [8], and [9]. None of these have a scheduling component. Machine scheduling problems have received a great deal of attention in the literature [10], but in the problem we study here, there is no underlying machine, and the association of jobs with network arcs and a maximum flow objective give it quite a different character. The closest work we can find is that in the recent paper of Tawarmalani and Li [11], which considers multiperiod maintenance scheduling over a network, in which the objective is based on multicommodity flows (with origin-destination demands, but 2

3 without arc capacities), there is a limit on the number of arcs that can be shut down in any one period, and the network s structure is restricted to a tree. Complexity results are provided for linear networks, with a polynomial algorithm in the case of (nearly) uniform commodity demands, and a proof that the case of general demands is strongly NP-hard. Integer programming models are also considered, and polyhedral analysis carried out. The lack of previous attention to the trade-off between maintenance scheduling and network flow reduction in the literature is also noted in [11]. Our key contribution in this paper is an analysis of how the complexity of the problem depends on important characteristics: (i) the case that the set of arcs with a job contains a minimum cut of the network, (ii) balanced networks, in which the capacity into and out of each (non-terminal, i.e. transhipment) node is equal, (iii) networks that are series-parallel, (iv) the number of time periods is treated as a fixed parameter, and (v) the case that all arcs have the same capacity. We show for case (i) that it is optimal to schedule all jobs in the same time period, and that this is also true if the network is both balanced and series-parallel. However if the network is balanced but not necessarily series-parallel, then the problem is strongly NP-hard. We provide an approximation ratio for scheduling all jobs in the same time period in the general case, which shows this is asymptotically optimal as T approaches infinity. For case (iv), we show that even if T = 2 and the network contains only a single transhipment node, the problem is weakly NP-hard, and we give an algorithm for series-parallel networks that has pseudopolynomial complexity for T fixed (but is exponential in T ). In case (v), if all arcs have the same capacity, we prove that the problem can be reduced to a maximum flow problem and T additional linear programs, and hence can be solved in polynomial time. In this case it is not necessarily optimal to schedule all jobs at the same time. The paper is organized as follows. Section 1 contains a discussion of cases of the network with a single transhipment node. In Section 2 we explore general networks, and in Section 3 we consider the case that all arcs have the same capacity. Finally, in Section 4 we suggest some future directions for study of this problem. 1 Networks with single transhipment node The problem in general is NP-hard [3]. In this proof, the reduction gave rise to a network with a single transhipment node, which was not balanced, and in which the set of arcs with associated jobs did not contain a minimum cut. This left open the complexity of the cases that all arcs in a minimum cut have an associated outage, or the network is balanced. This section gives a result that describes a class of networks with single transhipment node that covers the above-mentioned cases and is easy to resolve. Consider a network having only one transhipment node, say v. Let C1 = u a, C 1 + = u a, a δ (v) C 2 = a δ (v)\j a δ + (v) u a, C + 2 = a δ + (v)\j If all jobs are scheduled at the same time, say in time period 1, we obtain a total throughput of min { C2, } { C+ 2 + (T 1) min C 1, C 1 + }. u a. 3

4 On the other hand, using u a = C1 C 2 and u a = C 1 + C+ 2 bound of a δ (v) J a δ + (v) J we obtain an upper min { T C2 + (T 1)(C 1 C 2 ), T C+ 2 + (T 1)(C+ 1 C+ 2 )} = min { C2 + (T 1)C 1, C+ 2 + (T } 1)C+ 1. If (i) C1 C+ 1 and C 2 C+ 2 or (ii) C+ 1 C 1 and C+ 2 C 2 then the upper bound equals the lower bound, and this proves the following sufficient optimality condition. Proposition 1. If (i) C1 C+ 1 and C 2 C+ 2 or (ii) C+ 1 C 1 and C+ 2 C 2, then it is optimal to schedule all jobs at the same time. As a simple consequence we note that in the following situations it is optimal to schedule all jobs at the same time: C 1 = C+ 1, so the network is balanced, or C 1 C+ 1 and J δ (v), or C + 1 C 1 and J δ+ (v). For a time horizon of two time periods the problem asks for a partition of the job set J = J 1 J 2 into two parts such that the total flow is maximized, i.e. we want to find max min u a, u a J 1 J 2 =J + min u a,. a δ (v)\j 1 a δ + (v)\j 1 a δ (v)\j 2 a δ + (v)\j 2 u a The following proposition shows that it is NP-hard to decide if the trivial partition J 1 = J and J 2 = is optimal. Proposition 2. For a network with one transhipment node and a time horizon of two periods it is NP-hard to decide if it is optimal to schedule all jobs at time 1. Proof. Reduction from Partition (see [7]). An instance is given by a set D = {d 1,..., d m } of positive integers with m i=1 d i = 2B, and the problem is to decide if there is a partition D = D 1 D 2 such that d D 1 d = d D 2 d = B. We consider the network shown in Figure 2 where every arc except the bold arc from v to t has an associated job. Scheduling all jobs at time 1 gives a total 2d 1 2B 1 s 2d 2 v 1 t 2d m 2B 1 Figure 2: The network for the reduction from Partition. Arcs are labeled with capacities. flow of 4B 1. A total flow of 4B is possible if and only if there is a flow of 2B in each time period, and this is equivalent to a positive solution for the Partition instance. The reduction from Partition suggests the use of dynamic programming to obtain a pseudopolynomial algorithm for the single node problem. This is indeed possible, and in fact can be done more generally for series-parallel networks. This more general approach is presented in the next section (see Corollary 1). 4

5 2 General Networks In this section we explore complexity issues for networks with more than one transhipment node and also discuss some of its tractable subclasses. We start with a lemma generalizing the upper bound in the single node case. Lemma 1. Let S A be any s-t cut in the network. The objective value for problem (1) (7) is bounded above by T u a + (T 1) u a. a S\J a S J Proof. Since S is a cut, the total flow over the whole time horizon is bounded above by T i=1 a S x ai = a S T x ai = i=1 a S\J i=1 T x ai + a S J i=1 by the combination of (2) (4). The result follows. T x ai a S\J T u a + a S J (T 1)u a, As an immediate consequence we obtain that the problem is tractable when the set of arcs that have to undergo maintenance contains a minimum cut. Proposition 3. If J contains a minimum cut S of the network then it is optimal to schedule all jobs at the same time. Proof. Since S is a minimum cut, the maximum flow in any period in which no maintenance is scheduled is a S u a, so scheduling all jobs at time 1 gives a total flow of (T 1) a S u a, which achieves the upper bound from Lemma 1. In Section 1, we showed that the case of single-node networks with balanced capacities is easy. The following theorem shows that the balanced property alone is not enough. Proposition 4. The problem is strongly NP-hard for balanced networks. Proof. Reduction from 3-Partition (see [7]). A 3-Partition instance is given by an integer B and a set {d 1,..., d 3m } of integers with B/4 < d i < B/2 for all i and 3m i=1 d i = mb. The problem is to decide if there is a partition of the set {d 1,..., d 3m } into m triples such that the sum of each triple equals B. Consider the network shown in Figure 3, where the arc labels indicate capacities, and the bold arcs don t have jobs associated with them. Also let the time horizon be T = m. By Lemma 1 applied to the cut ({s}, {v 1, v 2, t}), the total flow is bounded by T (m 1)B + (T 1) 3m i=1 d i = 2m(m 1)B. To achieve the bound 2m(m 1)B the arc (s, v 2 ) is at capacity in every time period. This implies that we have to schedule exactly one job on the arcs between v 2 and t in each time period. Now flow conservation in node v 2 implies that the flow on the arc (v 1, v 2 ) is zero in every time period. Considering the cut ({s, v 1, v 2 }, {t}) the bound 2m(m 1)B can be achieved only if the arc (v 1, t) is at capacity in every time period. Using flow conservation in node v 1 we can now conclude that in order to achieve the bound 2m(m 1)B it is necessary and sufficient to send in each time period (m 1)B units of flow from s to v 1, and this can be done if and only if the answer for the 3-Partition instance is YES. 5

6 (m 1)B d 1 m arcs B s d 2 d 3m 1 v 1 B v 2 B B t d 3m (m 1)B Figure 3: The network for the reduction from 3-Partition. As already mentioned, not all instances of the general balanced network are hard. The singlenode variant is easy and is in fact a special case of a series-parallel network. Note that the network constructed in the above NP-hardness proof is not series-parallel. We show below (Proposition 5) that indeed the case of series-parallel balanced networks is easy. However we first make precise our definition of series-parallel. Throughout this paper, by series-parallel network we mean a two-terminal series-parallel network: a network that has a single source and single sink and is constructed by a sequence of series and parallel compositions starting from single arcs. For two networks N 1 and N 2 the parallel composition of N 1 and N 2 is obtained by identifying the source node s 1 and sink node t 1 of N 1 with the source node s 2 and sink node t 2 of N 2, respectively. The series composition of N 1 and N 2 is obtained by identifying the sink node t 1 of N 1 with the source node s 2 of N 2. We denote these compositions by N 1 P N 2 and N 1 S N 2, respectively. The next proposition shows that series-parallel balanced networks are tractable. Proposition 5. If the network is series-parallel and balanced then it is optimal to schedule all jobs at the same time. Proof. For a network N = (V, A, s, t, u) and a subset J A let F N,J denote the maximum flow value in the network N = (V, A \ J, s, t, u A\J ). The statement that it is optimal to schedule all jobs at the same time is equivalent to F N,J J + F N, F N,J + F N,J for all J, J A (see [3]). We prove the proposition by induction on the structure of the graph. The claim holds for the base case of a single arc. So assume that N is a series-parallel network that is not a single arc. Then N = N 1 P N 2 or N = N 1 S N 2 for some smaller networks N i = (V i, A i, s i, t i, u i ) (i {1, 2}), and by induction F Ni,J i J i + F N i, F Ni,J i + F N,J i for all J i, J i A i. Now let J, J A = A 1 A 2 be arbitrary and put J i = J A i and J i = J A i for i {1, 2}. Case 1. N = N 1 P N 2. Then F N,J J + F N, = F N1,J 1 J 1 + F N 1, + F N2,J 2 J 2 + F N 2, F N1,J 1 + F N1,J 1 + F N 2,J 2 + F N2,J 2 = F N,J + F N,J. 6

7 Case 2. N = N 1 S N 2. By the assumption that N is balanced, we have F N, = F N1, = F N2,, and we denote this common value by F. Now F N,J J + F = min{f N1,J 1 J 1, F N 2,J 2 J 2 } + F min{f N 1,J 1 + F N1,J 1, F N 2,J 2 + F N2,J 2 } min{f N1,J 1, F N2,J 2 } + min{f N1,J 1, F N 2,J 2 } = F N,J + F N,J. Since scheduling all jobs in the same period seems to be optimal in some cases, we now ask how well it performs as an approximation algorithm in the general case. Proposition 6. Scheduling all jobs in the same period gives an approximation ratio no less than (T 1) T. Proof. Let z denote the optimal value and z denote the throughput obtained by scheduling all arcs in the same period. Clearly z (T 1)F and z T F, so z z T 1 T. Thus scheduling all jobs in the same period is asymptotically optimal in the sense that the approximation ratio approaches 1 as T tends to infinity. In general the analysis in the proof of Proposition 6 is tight as can be seen by considering the network in Figure 4 where all arcs have unit capacity and the set J of arcs with a job is the set of the two arcs from s to v. Then scheduling both outages at the same time yields a total throughput of T 1 while for T 2 the outages can be scheduled in different time periods which yields a total throughput of T, and the approximation ratio in this case is (T 1)/T. For certain instances the analysis of the approximation ratio can be s v t Figure 4: A network where the bound of Proposition 6 is tight. slightly improved. For this let L = (T 1)F + min S S a S\J u a, U = min S S ( T a S u a a S J u a ) where the minima are over the the set S of all s-t-cuts in the network. Clearly, L is the objective value for scheduling all jobs in the same time period, and from Lemma 1 it follows that U is an upper bound for the optimal objective value. Thus L/U is a lower bound for the approximation ratio, and since L (T 1)F and U T F this is at least as good as the bound from Proposition 6. Note that this generalizes Proposition 3: if J contains a min cut S then both of the minima in the definitions of L and U are obtained for S, and we get L = U = (T 1)F, the approximation ratio is 1, in other words it is optimal to schedule all jobs in the same time period. Next we present an algorithm for general series-parallel networks, which for the instance used in the proof of Proposition 2 coincides with the well known dynamic programming algorithm for Partition. With feasible values for the binary variables y ai (a J, i [T ]) we can associate a vector z y = (z y i ) i=1,...,t where z y i denotes the maximum flow in the network with arc set A \ {a : y ai = 0}. By symmetry we may assume that z y 1 zy 2 zy T. Our algorithm exploits the 7

8 fact that many different maintenance schedules y may give rise to the same vector z y to gain efficiency over naive enumeration of schedules. The algorithm computes the possible vectors z for subnetworks of the network N, starting from single arcs. To do this we use sp-trees which encode the construction of series-parallel networks. An sp-tree for a series-parallel network N is a full binary tree in which the leaves correspond to the arcs of N, any internal node corresponds to the composition of its two child nodes, and the type of composition (series or parallel) is indicated by a node label ( S or P, respectively). Figure 5 shows a network and the corresponding sp-tree. Recognition of series-parallel networks and construction of an sp-tree can be done in linear time [12]. S s a v 1 c t P P b d a b c d Figure 5: A series-parallel network and the corresponding sp-tree. So assume we are given the sp-tree with node set V = L W, where L is the set of leaves and W is the set of internal nodes. The set W is partitioned into level sets W i where W i is the set of internal nodes at distance i from the root. Let d be the largest index such that W d. The lists of possible maximum flow vectors z are initialized at the leaves by assigning a list with a single element to the leaf corresponding to arc a. The unique element in this list is (u a, u a,..., u a, 0) if a J and (u a, u a,..., u a, u a ) if a J. Then the lists for the internal nodes are computed going up in the tree as described in Algorithm 1. The list generated for each node v V is denoted by L v. This algorithm returns the maximum total throughput, and it is easy to see how to keep track of corresponding schedules for all the elements of the lists in the internal nodes. Example 1. Suppose for the network in Figure 5 the capacities are u a = 4, u b = 1, u c = u d = 2, the set of arcs with a job is J = {a, b, c}, and the time horizon is T = 3. Figure 6 illustrates how the lists for the internal nodes are computed. The optimal vector in the root node is (4, 4, 1) giving S {(4, 4, 0), (4, 2, 0), (4, 4, 1), (4, 2, 1)} P {(5, 5, 0), (5, 4, 1)} P {(4, 4, 2)} {(4, 4, 0)} {(1, 1, 0)} {(2, 2, 0)} {(2, 2, 2)} Figure 6: Computation of the possible maximum flow vectors. a total throughput of 9, and this can be obtained by scheduling the job on arc b for the second time period and the jobs for arcs a and c for the third time period. 8

9 Algorithm 1 Maximizing total throughput for series-parallel networks for v L do Let a A be the arc corresponding to v if a J then L v {(u a, u a,..., u a, 0)} else L v {(u a, u a,..., u a, u a )} for i = d, d 1,..., 0 do for v W i do L v {} /* initialize empty list*/ Let u and w be the child nodes of v for each z L u, z L w and π a permutation of {1, 2..., T } do if v is a parallel composition node then for i [T ] do z i = z i + z π(i) else /* v is a series composition node */ for i [T ] do z i = min{z i, z π(i) } sort the components of z in non-increasing order if z L v then add z to L v Let v be the root node of the sp-tree and return max z L v T z i i=1 Bounding the runtime of Algorithm 1 we obtain the following complexity result. Proposition 7. For series-parallel networks with m arcs the problem can be solved in time O ( mt T +3/2 e T log(t where B is an upper bound for the capacities. Proof. The entries of the vectors in the lists at the internal nodes are bounded by mb, hence every list can contain at most (mb +1) T elements. Thus the loop over (z, z ) L u L w and permutations π is over at most T!(mB +1) 2T elements. Inside this loop is another one giving an additional factor T, and a sorting operation which is at most a factor of T log(t ). With the use of hash tables, checking z is not already in the list prior to insertion will not worsen the complexity of operations inside this loop, which is thus T log(t ). In total there are m 1 internal nodes, thus the runtime is O(T log(t )T!(mB + 1) 2T (m 1)) from which the result follows when T! is bounded using Stirling s formula. Corollary 1. For series-parallel networks and fixed time horizon T the problem can be solved in time O ( m(mb) 2T ). We add two remarks on an efficient implementation of Algorithm Any vector z that is dominated by another vector z in the list, meaning that z i z i i {1, 2..., T }, can be removed immediately. for all 2. In the loop over (z, z ) L u L w and permutations π it is necessary to loop over all permutations only if the entries of the vectors z and z are pairwise distinct. An efficient implementation detects the occurrence of multiple entries and restricts the range of the considered permutations accordingly. 9

10 3 Networks with all arcs having unit capacity In this section we study the case that the capacity of every arc equals 1. We can aggregate all time periods and solve a standard max flow problem to get an upper bound. The max flow problem is max X a X a (8) s.t. a δ + (s) a δ + (v) X a = a δ (s) a δ (v) X a v N \ {s, t}, (9) X a T a A \ J, (10) X a T 1 a J, (11) X a 0 a A. (12) We will show that this upper bound is actually tight. This follows by induction once we can find a max flow X and cover all the arcs carrying flow T by a collection of arc disjoint s-t-paths. Given any max flow we can reduce the flow along any cycles carrying flow, and we can remove arcs with zero flow. So in order to prove that the upper bound is tight it is sufficient to prove the following result. Proposition 8. Let (V, A, s, t) be an acyclic network with source s V and sink t V, and suppose X : A [T ] satisfies the flow conservation constraints Xa = for all v V \ {s, t}. a δ (v) a δ + (v) X a Then there is a collection P of arc-disjoint s-t-paths such that A P P P, where A = {a A : X a = T } is the set of arcs carrying flow T. Proof. We consider the following binary program, in which (ξ a ) a A induces a set of arc-disjoint s-t-paths: max ξ a (13) a A s.t. ξ a ξ a = 0 v V \ {s, t}, (14) a δ + (v) a δ (v) ξ a {0, 1} a A. (15) We have to prove that the optimal objective value for the problem (13) (15) is A. The flow conservation constraints (14) form a network matrix, hence we do not lose anything by relaxing integrality, i.e. we can replace (15) by 0 ξ a 1 for all a A. The dual problem can be written in the form min a A η a (16) s.t. π v π w + η a 0 a = (v, w) A \ A, (17) π v π w + η a 1 a = (v, w) A, (18) π s = π t = 0, (19) η a 0 a A. (20) 10

11 A feasible solution with objective value A is given by π v = 0 for all v V, η a = 0 for a A \ A, and η a = 1 for a A. In order to prove our claim we have to check that A is a lower bound, i.e. that a A η a A for every feasible solution. To see this let P be any decomposition of the flow X into paths, that is a collection of s-t-paths such that every arc a is contained in exactly Xa paths P P. Adding up constraints (17) and (18) over the arcs of any path P P, we obtain η a P A, hence a P Xaη a = η a a A Finally, using X a T for all a A, P P a P a A η a a A P P P A = T A. X a T η a A. To summarize, if u a = 1 for all a A then the problem can be reduced to solving the max flow problem (8) (12) followed by T instances of (the linear relaxation of) the problem (13) (15). Consequently, these instances can be solved in time polynomial in the size of the network and the time horizon T. Remark 1. It is straightforward to generalize the result of this section to the problem where every arc can have several unit processing time jobs which must not overlap. The only necessary modification in this case is to replace the right-hand side of constraint (11) by T m a where m a is the number of jobs that have to be scheduled on arc a. 4 Future Work It would be interesting to find a more combinatorial proof of Proposition 8, rather than resorting to solution of linear programs. A combinatorial proof may suggest combinatorial algorithms for constructing the arc-disjoint paths that cover all arcs with flow T. Practical algorithms for more general problems are also of interest. References [1] N. Boland, T. Kalinowski, H. Waterer and L. Zheng. An optimisation approach to maintenance scheduling for capacity alignment in the Hunter Valley coal chain. In: Proc. 35th APCOM Symposium: Applications of Computers and Operations Research in the Minerals Industry. Ed. by E.Y. Baafi, R.J. Kininmonth and I. Porter. The Australasian Institute of Mining and Metallurgy Publication Series 11. Wollongong, Australia, 2011, pp [2] N. Boland, T. Kalinowski, H. Waterer and L. Zheng. Mixed integer programming based maintenance scheduling for the Hunter Valley Coal Chain. In: Journal of Scheduling (2012). in press. doi: /s y. [3] N. Boland, T. Kalinowski, H. Waterer and L. Zheng. Scheduling arc maintenance jobs in a network to maximize total flow over time. In: Discr. Appl. Math. (2012). in press. doi: /j.dam [4] N. Boland and M. Savelsbergh. Optimizing the Hunter Valley coal chain. In: Supply Chain Disruptions: Theory and Practice of Managing Risk. Ed. by H. Gurnani, A. Mehrotra and S. Ray. Springer-Verlag London Ltd., 2011, pp

12 [5] L. Fleischer. Universally maximum flow with piecewise-constant capacities. In: Networks 38.3 (2001), pp doi: /net [6] L.R. Ford and D.R. Fulkerson. Flows in Networks. Princeton, N.J.: Princeton Univ. Press, [7] M.R. Garey and D.S. Johnson. Computers and intractability, a guide to the theory of NP completeness. W.H. Freeman, [8] B. Hajek and R.G. Ogier. Optimal dynamic routing in communication networks with continuous traffic. In: Networks 14.3 (1984), pp doi: /net [9] B. Hoppe and É. Tardos. Polynomial time algorithms for some evacuation problems. In: Proc. 5th ACM-SIAM symposium on discrete algorithms SODA Society for Industrial and Applied Mathematics. 1994, pp [10] M.L. Pinedo. Scheduling: theory, algorithms, and systems. Springer, [11] Mohit Tawarmalani and Yanjun Li. Multi-period maintenance scheduling of tree networks with minimum flow disruption. In: Naval Research Logistics (NRL) 58.5 (2011), pp doi: /nav [12] Jacobo Valdes, Robert E Tarjan and Eugene L Lawler. The recognition of series parallel digraphs. In: Proc. 11th ACM symposium on Theory of computing, STOC ACM. 1979, pp doi: /

New Theory and Algorithms for Scheduling Arc Shutdown Jobs in Networks

New Theory and Algorithms for Scheduling Arc Shutdown Jobs in Networks New Theory and Algorithms for Scheduling Arc Shutdown Jobs in Networks Patrick Andersen February 27, 2014 This project explores a recently developed type of scheduling problem that combines the two Operations

More information

The network maintenance problem

The network maintenance problem 22nd International Congress on Modelling and Simulation, Hobart, Tasmania, Australia, 3 to 8 December 2017 mssanz.org.au/modsim2017 The network maintenance problem Parisa Charkhgard a, Thomas Kalinowski

More information

The Maximum Flow Problem with Disjunctive Constraints

The Maximum Flow Problem with Disjunctive Constraints The Maximum Flow Problem with Disjunctive Constraints Ulrich Pferschy Joachim Schauer Abstract We study the maximum flow problem subject to binary disjunctive constraints in a directed graph: A negative

More information

The Multiple Traveling Salesman Problem with Time Windows: Bounds for the Minimum Number of Vehicles

The Multiple Traveling Salesman Problem with Time Windows: Bounds for the Minimum Number of Vehicles The Multiple Traveling Salesman Problem with Time Windows: Bounds for the Minimum Number of Vehicles Snežana Mitrović-Minić Ramesh Krishnamurti School of Computing Science, Simon Fraser University, Burnaby,

More information

Multicommodity Flows and Column Generation

Multicommodity Flows and Column Generation Lecture Notes Multicommodity Flows and Column Generation Marc Pfetsch Zuse Institute Berlin pfetsch@zib.de last change: 2/8/2006 Technische Universität Berlin Fakultät II, Institut für Mathematik WS 2006/07

More information

The 2-valued case of makespan minimization with assignment constraints

The 2-valued case of makespan minimization with assignment constraints The 2-valued case of maespan minimization with assignment constraints Stavros G. Kolliopoulos Yannis Moysoglou Abstract We consider the following special case of minimizing maespan. A set of jobs J and

More information

Theory of Computation Chapter 1: Introduction

Theory of Computation Chapter 1: Introduction Theory of Computation Chapter 1: Introduction Guan-Shieng Huang Sep. 20, 2006 Feb. 9, 2009 0-0 Text Book Computational Complexity, by C. H. Papadimitriou, Addison-Wesley, 1994. 1 References Garey, M.R.

More information

Robust Network Codes for Unicast Connections: A Case Study

Robust Network Codes for Unicast Connections: A Case Study Robust Network Codes for Unicast Connections: A Case Study Salim Y. El Rouayheb, Alex Sprintson, and Costas Georghiades Department of Electrical and Computer Engineering Texas A&M University College Station,

More information

On the Existence of Ideal Solutions in Multi-objective 0-1 Integer Programs

On the Existence of Ideal Solutions in Multi-objective 0-1 Integer Programs On the Existence of Ideal Solutions in Multi-objective -1 Integer Programs Natashia Boland a, Hadi Charkhgard b, and Martin Savelsbergh a a School of Industrial and Systems Engineering, Georgia Institute

More information

Representations of All Solutions of Boolean Programming Problems

Representations of All Solutions of Boolean Programming Problems Representations of All Solutions of Boolean Programming Problems Utz-Uwe Haus and Carla Michini Institute for Operations Research Department of Mathematics ETH Zurich Rämistr. 101, 8092 Zürich, Switzerland

More information

Combinatorial optimization problems

Combinatorial optimization problems Combinatorial optimization problems Heuristic Algorithms Giovanni Righini University of Milan Department of Computer Science (Crema) Optimization In general an optimization problem can be formulated as:

More information

Maximum Flow Problem (Ford and Fulkerson, 1956)

Maximum Flow Problem (Ford and Fulkerson, 1956) Maximum Flow Problem (Ford and Fulkerson, 196) In this problem we find the maximum flow possible in a directed connected network with arc capacities. There is unlimited quantity available in the given

More information

Integer Equal Flows. 1 Introduction. Carol A. Meyers Andreas S. Schulz

Integer Equal Flows. 1 Introduction. Carol A. Meyers Andreas S. Schulz Integer Equal Flows Carol A Meyers Andreas S Schulz Abstract We examine an NP-hard generalization of the network flow problem known as the integer equal flow problem The setup is the same as a standard

More information

The Constrained Minimum Weighted Sum of Job Completion Times Problem 1

The Constrained Minimum Weighted Sum of Job Completion Times Problem 1 The Constrained Minimum Weighted Sum of Job Completion Times Problem 1 Asaf Levin 2 and Gerhard J. Woeginger 34 Abstract We consider the problem of minimizing the weighted sum of job completion times on

More information

This means that we can assume each list ) is

This means that we can assume each list ) is This means that we can assume each list ) is of the form ),, ( )with < and Since the sizes of the items are integers, there are at most +1pairs in each list Furthermore, if we let = be the maximum possible

More information

OPERA TIONS RESEARCH CENTER

OPERA TIONS RESEARCH CENTER OPERA TIONS RESEARCH CENTER Working Paper Optimal Rounding of Instantaneous Fractional Flows Over Time by Lisa K. Fleischer James B. Orlin OR 340-99 August 1999 MASSA CHUSETTS INSTITUTE OF TECHNOLOG Y

More information

The maximum flow in dynamic networks

The maximum flow in dynamic networks Computer Science Journal of Moldova, vol.12, no.3(36), 2004 The maximum flow in dynamic networks Maria A. Fonoberova, Dmitrii D. Lozovanu Abstract The dynamic maximum flow problem that generalizes the

More information

The Complexity of Maximum. Matroid-Greedoid Intersection and. Weighted Greedoid Maximization

The Complexity of Maximum. Matroid-Greedoid Intersection and. Weighted Greedoid Maximization Department of Computer Science Series of Publications C Report C-2004-2 The Complexity of Maximum Matroid-Greedoid Intersection and Weighted Greedoid Maximization Taneli Mielikäinen Esko Ukkonen University

More information

Discrete Optimization 23

Discrete Optimization 23 Discrete Optimization 23 2 Total Unimodularity (TU) and Its Applications In this section we will discuss the total unimodularity theory and its applications to flows in networks. 2.1 Total Unimodularity:

More information

Multicommodity flows over time: Efficient algorithms and complexity

Multicommodity flows over time: Efficient algorithms and complexity Theoretical Computer Science 379 (27) 387 44 www.elsevier.com/locate/tcs Multicommodity flows over time: Efficient algorithms and complexity Alex Hall a, Steffen Hippler b, Martin Skutella c, a Institut

More information

Office of Naval Research contract no. N K-0377 (9) FINAL TECHNICAL REPORT

Office of Naval Research contract no. N K-0377 (9) FINAL TECHNICAL REPORT Office of Naval Research contract no. N00014-88-K-0377 (9) The Concept of Best Probability in the Analysis of Approximation Algorithms 0) - Dorit S. Hochbaum, Principal Investigator oom FINAL TECHNICAL

More information

EXERCISES SHORTEST PATHS: APPLICATIONS, OPTIMIZATION, VARIATIONS, AND SOLVING THE CONSTRAINED SHORTEST PATH PROBLEM. 1 Applications and Modelling

EXERCISES SHORTEST PATHS: APPLICATIONS, OPTIMIZATION, VARIATIONS, AND SOLVING THE CONSTRAINED SHORTEST PATH PROBLEM. 1 Applications and Modelling SHORTEST PATHS: APPLICATIONS, OPTIMIZATION, VARIATIONS, AND SOLVING THE CONSTRAINED SHORTEST PATH PROBLEM EXERCISES Prepared by Natashia Boland 1 and Irina Dumitrescu 2 1 Applications and Modelling 1.1

More information

Week 4. (1) 0 f ij u ij.

Week 4. (1) 0 f ij u ij. Week 4 1 Network Flow Chapter 7 of the book is about optimisation problems on networks. Section 7.1 gives a quick introduction to the definitions of graph theory. In fact I hope these are already known

More information

Time Aggregation for Network Design to Meet Time-Constrained Demand

Time Aggregation for Network Design to Meet Time-Constrained Demand 20th International Congress on Modelling and Simulation, Adelaide, Australia, 1 6 December 2013 www.mssanz.org.au/modsim2013 Time Aggregation for Network Design to Meet Time-Constrained Demand N. Boland

More information

CS675: Convex and Combinatorial Optimization Fall 2014 Combinatorial Problems as Linear Programs. Instructor: Shaddin Dughmi

CS675: Convex and Combinatorial Optimization Fall 2014 Combinatorial Problems as Linear Programs. Instructor: Shaddin Dughmi CS675: Convex and Combinatorial Optimization Fall 2014 Combinatorial Problems as Linear Programs Instructor: Shaddin Dughmi Outline 1 Introduction 2 Shortest Path 3 Algorithms for Single-Source Shortest

More information

Reachability of recurrent positions in the chip-firing game

Reachability of recurrent positions in the chip-firing game Egerváry Research Group on Combinatorial Optimization Technical reports TR-2015-10. Published by the Egerváry Research Group, Pázmány P. sétány 1/C, H 1117, Budapest, Hungary. Web site: www.cs.elte.hu/egres.

More information

Extreme Point Solutions for Infinite Network Flow Problems

Extreme Point Solutions for Infinite Network Flow Problems Extreme Point Solutions for Infinite Network Flow Problems H. Edwin Romeijn Dushyant Sharma Robert L. Smith January 3, 004 Abstract We study capacitated network flow problems with supplies and demands

More information

A Robust APTAS for the Classical Bin Packing Problem

A Robust APTAS for the Classical Bin Packing Problem A Robust APTAS for the Classical Bin Packing Problem Leah Epstein 1 and Asaf Levin 2 1 Department of Mathematics, University of Haifa, 31905 Haifa, Israel. Email: lea@math.haifa.ac.il 2 Department of Statistics,

More information

Introduction to Bin Packing Problems

Introduction to Bin Packing Problems Introduction to Bin Packing Problems Fabio Furini March 13, 2015 Outline Origins and applications Applications: Definition: Bin Packing Problem (BPP) Solution techniques for the BPP Heuristic Algorithms

More information

The Generalized Regenerator Location Problem

The Generalized Regenerator Location Problem The Generalized Regenerator Location Problem Si Chen Ivana Ljubić S. Raghavan College of Business and Public Affairs, Murray State University Murray, KY 42071, USA Faculty of Business, Economics, and Statistics,

More information

On the Min-Max-Delay Problem: NP-completeness, Algorithm, and Integrality Gap

On the Min-Max-Delay Problem: NP-completeness, Algorithm, and Integrality Gap On the Min-Max-Delay Problem: NP-completeness, Algorithm, and Integrality Gap Qingyu Liu, Lei Deng, Haibo Zeng, Minghua Chen Department of Electrical and Computer Engineering, Virginia Tech, USA Department

More information

Lecture 21 November 11, 2014

Lecture 21 November 11, 2014 CS 224: Advanced Algorithms Fall 2-14 Prof. Jelani Nelson Lecture 21 November 11, 2014 Scribe: Nithin Tumma 1 Overview In the previous lecture we finished covering the multiplicative weights method and

More information

Partition is reducible to P2 C max. c. P2 Pj = 1, prec Cmax is solvable in polynomial time. P Pj = 1, prec Cmax is NP-hard

Partition is reducible to P2 C max. c. P2 Pj = 1, prec Cmax is solvable in polynomial time. P Pj = 1, prec Cmax is NP-hard I. Minimizing Cmax (Nonpreemptive) a. P2 C max is NP-hard. Partition is reducible to P2 C max b. P Pj = 1, intree Cmax P Pj = 1, outtree Cmax are both solvable in polynomial time. c. P2 Pj = 1, prec Cmax

More information

The partial inverse minimum cut problem with L 1 -norm is strongly NP-hard. Elisabeth Gassner

The partial inverse minimum cut problem with L 1 -norm is strongly NP-hard. Elisabeth Gassner FoSP Algorithmen & mathematische Modellierung FoSP Forschungsschwerpunkt Algorithmen und mathematische Modellierung The partial inverse minimum cut problem with L 1 -norm is strongly NP-hard Elisabeth

More information

Lecture 3. 1 Polynomial-time algorithms for the maximum flow problem

Lecture 3. 1 Polynomial-time algorithms for the maximum flow problem ORIE 633 Network Flows August 30, 2007 Lecturer: David P. Williamson Lecture 3 Scribe: Gema Plaza-Martínez 1 Polynomial-time algorithms for the maximum flow problem 1.1 Introduction Let s turn now to considering

More information

Mathematical Programs Linear Program (LP)

Mathematical Programs Linear Program (LP) Mathematical Programs Linear Program (LP) Integer Program (IP) Can be efficiently solved e.g., by Ellipsoid Method Cannot be efficiently solved Cannot be efficiently solved assuming P NP Combinatorial

More information

Complexity analysis of the discrete sequential search problem with group activities

Complexity analysis of the discrete sequential search problem with group activities Complexity analysis of the discrete sequential search problem with group activities Coolen K, Talla Nobibon F, Leus R. KBI_1313 Complexity analysis of the discrete sequential search problem with group

More information

A GREEDY APPROXIMATION ALGORITHM FOR CONSTRUCTING SHORTEST COMMON SUPERSTRINGS *

A GREEDY APPROXIMATION ALGORITHM FOR CONSTRUCTING SHORTEST COMMON SUPERSTRINGS * A GREEDY APPROXIMATION ALGORITHM FOR CONSTRUCTING SHORTEST COMMON SUPERSTRINGS * 1 Jorma Tarhio and Esko Ukkonen Department of Computer Science, University of Helsinki Tukholmankatu 2, SF-00250 Helsinki,

More information

8 Knapsack Problem 8.1 (Knapsack)

8 Knapsack Problem 8.1 (Knapsack) 8 Knapsack In Chapter 1 we mentioned that some NP-hard optimization problems allow approximability to any required degree. In this chapter, we will formalize this notion and will show that the knapsack

More information

EXACT DOUBLE DOMINATION IN GRAPHS

EXACT DOUBLE DOMINATION IN GRAPHS Discussiones Mathematicae Graph Theory 25 (2005 ) 291 302 EXACT DOUBLE DOMINATION IN GRAPHS Mustapha Chellali Department of Mathematics, University of Blida B.P. 270, Blida, Algeria e-mail: mchellali@hotmail.com

More information

FRACTIONAL PACKING OF T-JOINS. 1. Introduction

FRACTIONAL PACKING OF T-JOINS. 1. Introduction FRACTIONAL PACKING OF T-JOINS FRANCISCO BARAHONA Abstract Given a graph with nonnegative capacities on its edges, it is well known that the capacity of a minimum T -cut is equal to the value of a maximum

More information

directed weighted graphs as flow networks the Ford-Fulkerson algorithm termination and running time

directed weighted graphs as flow networks the Ford-Fulkerson algorithm termination and running time Network Flow 1 The Maximum-Flow Problem directed weighted graphs as flow networks the Ford-Fulkerson algorithm termination and running time 2 Maximum Flows and Minimum Cuts flows and cuts max flow equals

More information

CS675: Convex and Combinatorial Optimization Fall 2016 Combinatorial Problems as Linear and Convex Programs. Instructor: Shaddin Dughmi

CS675: Convex and Combinatorial Optimization Fall 2016 Combinatorial Problems as Linear and Convex Programs. Instructor: Shaddin Dughmi CS675: Convex and Combinatorial Optimization Fall 2016 Combinatorial Problems as Linear and Convex Programs Instructor: Shaddin Dughmi Outline 1 Introduction 2 Shortest Path 3 Algorithms for Single-Source

More information

A robust APTAS for the classical bin packing problem

A robust APTAS for the classical bin packing problem A robust APTAS for the classical bin packing problem Leah Epstein Asaf Levin Abstract Bin packing is a well studied problem which has many applications. In this paper we design a robust APTAS for the problem.

More information

Packing triangles in regular tournaments

Packing triangles in regular tournaments Packing triangles in regular tournaments Raphael Yuster Abstract We prove that a regular tournament with n vertices has more than n2 11.5 (1 o(1)) pairwise arc-disjoint directed triangles. On the other

More information

Lecture 2: Scheduling on Parallel Machines

Lecture 2: Scheduling on Parallel Machines Lecture 2: Scheduling on Parallel Machines Loris Marchal October 17, 2012 Parallel environment alpha in Graham s notation): P parallel identical Q uniform machines: each machine has a given speed speed

More information

Technische Universität München, Zentrum Mathematik Lehrstuhl für Angewandte Geometrie und Diskrete Mathematik. Combinatorial Optimization (MA 4502)

Technische Universität München, Zentrum Mathematik Lehrstuhl für Angewandte Geometrie und Diskrete Mathematik. Combinatorial Optimization (MA 4502) Technische Universität München, Zentrum Mathematik Lehrstuhl für Angewandte Geometrie und Diskrete Mathematik Combinatorial Optimization (MA 4502) Dr. Michael Ritter Problem Sheet 1 Homework Problems Exercise

More information

University of Twente. Faculty of Mathematical Sciences. Scheduling split-jobs on parallel machines. University for Technical and Social Sciences

University of Twente. Faculty of Mathematical Sciences. Scheduling split-jobs on parallel machines. University for Technical and Social Sciences Faculty of Mathematical Sciences University of Twente University for Technical and Social Sciences P.O. Box 217 7500 AE Enschede The Netherlands Phone: +31-53-4893400 Fax: +31-53-4893114 Email: memo@math.utwente.nl

More information

THE COMMUNICATIONS COMPLEXITY HIERARCHY IN DISTRIBUTED COMPUTING. J. B. Sidney + and J. Urrutia*

THE COMMUNICATIONS COMPLEXITY HIERARCHY IN DISTRIBUTED COMPUTING. J. B. Sidney + and J. Urrutia* THE COMMUNICATIONS COMPLEXITY HIERARCHY IN DISTRIBUTED COMPUTING J. B. Sidney + and J. Urrutia* 1. INTRODUCTION Since the pioneering research of Cook [1] and Karp [3] in computational complexity, an enormous

More information

A Linear-Time Algorithm for the Terminal Path Cover Problem in Cographs

A Linear-Time Algorithm for the Terminal Path Cover Problem in Cographs A Linear-Time Algorithm for the Terminal Path Cover Problem in Cographs Ruo-Wei Hung Department of Information Management Nan-Kai Institute of Technology, Tsao-Tun, Nantou 54, Taiwan rwhung@nkc.edu.tw

More information

Topic: Balanced Cut, Sparsest Cut, and Metric Embeddings Date: 3/21/2007

Topic: Balanced Cut, Sparsest Cut, and Metric Embeddings Date: 3/21/2007 CS880: Approximations Algorithms Scribe: Tom Watson Lecturer: Shuchi Chawla Topic: Balanced Cut, Sparsest Cut, and Metric Embeddings Date: 3/21/2007 In the last lecture, we described an O(log k log D)-approximation

More information

NP-Hardness and Fixed-Parameter Tractability of Realizing Degree Sequences with Directed Acyclic Graphs

NP-Hardness and Fixed-Parameter Tractability of Realizing Degree Sequences with Directed Acyclic Graphs NP-Hardness and Fixed-Parameter Tractability of Realizing Degree Sequences with Directed Acyclic Graphs Sepp Hartung and André Nichterlein Institut für Softwaretechnik und Theoretische Informatik TU Berlin

More information

A packing integer program arising in two-layer network design

A packing integer program arising in two-layer network design A packing integer program arising in two-layer network design Christian Raack Arie M.C.A Koster Zuse Institute Berlin Takustr. 7, D-14195 Berlin Centre for Discrete Mathematics and its Applications (DIMAP)

More information

Contents. Introduction

Contents. Introduction Introduction Contents Chapter 1. Network Flows 1 1.1. Graphs 1 1.2. Shortest Paths 8 1.3. Maximum Flow 17 1.4. Min Cost Flows 22 List of frequently used Symbols 31 Bibliography 33 Index 37 iii i Introduction

More information

Bicriterial Delay Management

Bicriterial Delay Management Universität Konstanz Bicriterial Delay Management Csaba Megyeri Konstanzer Schriften in Mathematik und Informatik Nr. 198, März 2004 ISSN 1430 3558 c Fachbereich Mathematik und Statistik c Fachbereich

More information

The minimum G c cut problem

The minimum G c cut problem The minimum G c cut problem Abstract In this paper we define and study the G c -cut problem. Given a complete undirected graph G = (V ; E) with V = n, edge weighted by w(v i, v j ) 0 and an undirected

More information

Maximum Integer Flows in Directed Planar Graphs with Multiple Sources and Sinks and Vertex Capacities

Maximum Integer Flows in Directed Planar Graphs with Multiple Sources and Sinks and Vertex Capacities Maximum Integer Flows in Directed Planar Graphs with Multiple Sources and Sinks and Vertex Capacities Yipu Wang University of Illinois at Urbana-Champaign ywang298@illinois.edu July 12, 2018 Abstract We

More information

NP-Completeness. f(n) \ n n sec sec sec. n sec 24.3 sec 5.2 mins. 2 n sec 17.9 mins 35.

NP-Completeness. f(n) \ n n sec sec sec. n sec 24.3 sec 5.2 mins. 2 n sec 17.9 mins 35. NP-Completeness Reference: Computers and Intractability: A Guide to the Theory of NP-Completeness by Garey and Johnson, W.H. Freeman and Company, 1979. NP-Completeness 1 General Problems, Input Size and

More information

Worst case analysis for a general class of on-line lot-sizing heuristics

Worst case analysis for a general class of on-line lot-sizing heuristics Worst case analysis for a general class of on-line lot-sizing heuristics Wilco van den Heuvel a, Albert P.M. Wagelmans a a Econometric Institute and Erasmus Research Institute of Management, Erasmus University

More information

Paths and cycles in extended and decomposable digraphs

Paths and cycles in extended and decomposable digraphs Paths and cycles in extended and decomposable digraphs Jørgen Bang-Jensen Gregory Gutin Department of Mathematics and Computer Science Odense University, Denmark Abstract We consider digraphs called extended

More information

CS599: Convex and Combinatorial Optimization Fall 2013 Lecture 17: Combinatorial Problems as Linear Programs III. Instructor: Shaddin Dughmi

CS599: Convex and Combinatorial Optimization Fall 2013 Lecture 17: Combinatorial Problems as Linear Programs III. Instructor: Shaddin Dughmi CS599: Convex and Combinatorial Optimization Fall 2013 Lecture 17: Combinatorial Problems as Linear Programs III Instructor: Shaddin Dughmi Announcements Today: Spanning Trees and Flows Flexibility awarded

More information

arxiv: v1 [cs.ds] 26 Feb 2016

arxiv: v1 [cs.ds] 26 Feb 2016 On the computational complexity of minimum-concave-cost flow in a two-dimensional grid Shabbir Ahmed, Qie He, Shi Li, George L. Nemhauser arxiv:1602.08515v1 [cs.ds] 26 Feb 2016 Abstract We study the minimum-concave-cost

More information

On-line Bin-Stretching. Yossi Azar y Oded Regev z. Abstract. We are given a sequence of items that can be packed into m unit size bins.

On-line Bin-Stretching. Yossi Azar y Oded Regev z. Abstract. We are given a sequence of items that can be packed into m unit size bins. On-line Bin-Stretching Yossi Azar y Oded Regev z Abstract We are given a sequence of items that can be packed into m unit size bins. In the classical bin packing problem we x the size of the bins and try

More information

An algorithm to increase the node-connectivity of a digraph by one

An algorithm to increase the node-connectivity of a digraph by one Discrete Optimization 5 (2008) 677 684 Contents lists available at ScienceDirect Discrete Optimization journal homepage: www.elsevier.com/locate/disopt An algorithm to increase the node-connectivity of

More information

to t in the graph with capacities given by u e + i(e) for edges e is maximized. We further distinguish the problem MaxFlowImp according to the valid v

to t in the graph with capacities given by u e + i(e) for edges e is maximized. We further distinguish the problem MaxFlowImp according to the valid v Flow Improvement and Network Flows with Fixed Costs S. O. Krumke, Konrad-Zuse-Zentrum fur Informationstechnik Berlin H. Noltemeier, S. Schwarz, H.-C. Wirth, Universitat Wurzburg R. Ravi, Carnegie Mellon

More information

A Geometric Approach to Graph Isomorphism

A Geometric Approach to Graph Isomorphism A Geometric Approach to Graph Isomorphism Pawan Aurora and Shashank K Mehta Indian Institute of Technology, Kanpur - 208016, India {paurora,skmehta}@cse.iitk.ac.in Abstract. We present an integer linear

More information

The Maximum Flows in Planar Dynamic Networks

The Maximum Flows in Planar Dynamic Networks INTERNATIONAL JOURNAL OF COMPUTERS COMMUNICATIONS & CONTROL ISSN 1841-9836, 11(2):282-291, April 2016. The Maximum Flows in Planar Dynamic Networks C. Schiopu, E. Ciurea Camelia Schiopu* 1. Transilvania

More information

Mathematics for Decision Making: An Introduction. Lecture 13

Mathematics for Decision Making: An Introduction. Lecture 13 Mathematics for Decision Making: An Introduction Lecture 13 Matthias Köppe UC Davis, Mathematics February 17, 2009 13 1 Reminder: Flows in networks General structure: Flows in networks In general, consider

More information

CS264: Beyond Worst-Case Analysis Lecture #18: Smoothed Complexity and Pseudopolynomial-Time Algorithms

CS264: Beyond Worst-Case Analysis Lecture #18: Smoothed Complexity and Pseudopolynomial-Time Algorithms CS264: Beyond Worst-Case Analysis Lecture #18: Smoothed Complexity and Pseudopolynomial-Time Algorithms Tim Roughgarden March 9, 2017 1 Preamble Our first lecture on smoothed analysis sought a better theoretical

More information

An Introduction to Network Flows Over Time

An Introduction to Network Flows Over Time An Introduction to Network Flows Over Time Martin Skutella Abstract We give an introduction into the fascinating area of flows over time also called dynamic flows in the literature. Starting from the early

More information

CSC 8301 Design & Analysis of Algorithms: Lower Bounds

CSC 8301 Design & Analysis of Algorithms: Lower Bounds CSC 8301 Design & Analysis of Algorithms: Lower Bounds Professor Henry Carter Fall 2016 Recap Iterative improvement algorithms take a feasible solution and iteratively improve it until optimized Simplex

More information

Lecture 5 January 16, 2013

Lecture 5 January 16, 2013 UBC CPSC 536N: Sparse Approximations Winter 2013 Prof. Nick Harvey Lecture 5 January 16, 2013 Scribe: Samira Samadi 1 Combinatorial IPs 1.1 Mathematical programs { min c Linear Program (LP): T x s.t. a

More information

Graphs and Network Flows IE411. Lecture 12. Dr. Ted Ralphs

Graphs and Network Flows IE411. Lecture 12. Dr. Ted Ralphs Graphs and Network Flows IE411 Lecture 12 Dr. Ted Ralphs IE411 Lecture 12 1 References for Today s Lecture Required reading Sections 21.1 21.2 References AMO Chapter 6 CLRS Sections 26.1 26.2 IE411 Lecture

More information

Algorithms for pattern involvement in permutations

Algorithms for pattern involvement in permutations Algorithms for pattern involvement in permutations M. H. Albert Department of Computer Science R. E. L. Aldred Department of Mathematics and Statistics M. D. Atkinson Department of Computer Science D.

More information

CS264: Beyond Worst-Case Analysis Lecture #15: Smoothed Complexity and Pseudopolynomial-Time Algorithms

CS264: Beyond Worst-Case Analysis Lecture #15: Smoothed Complexity and Pseudopolynomial-Time Algorithms CS264: Beyond Worst-Case Analysis Lecture #15: Smoothed Complexity and Pseudopolynomial-Time Algorithms Tim Roughgarden November 5, 2014 1 Preamble Previous lectures on smoothed analysis sought a better

More information

CS 350 Algorithms and Complexity

CS 350 Algorithms and Complexity CS 350 Algorithms and Complexity Winter 2019 Lecture 15: Limitations of Algorithmic Power Introduction to complexity theory Andrew P. Black Department of Computer Science Portland State University Lower

More information

Network Flows. CTU FEE Department of control engineering. March 28, 2017

Network Flows. CTU FEE Department of control engineering. March 28, 2017 Network Flows Zdeněk Hanzálek, Přemysl Šůcha hanzalek@fel.cvut.cz CTU FEE Department of control engineering March 28, 2017 Z. Hanzálek (CTU FEE) Network Flows March 28, 2017 1 / 44 Table of contents 1

More information

CS 350 Algorithms and Complexity

CS 350 Algorithms and Complexity 1 CS 350 Algorithms and Complexity Fall 2015 Lecture 15: Limitations of Algorithmic Power Introduction to complexity theory Andrew P. Black Department of Computer Science Portland State University Lower

More information

The Tool Switching Problem Revisited

The Tool Switching Problem Revisited The Tool Switching Problem Revisited Yves Crama HEC Management School, University of Liège, Boulevard du Rectorat, 7 (B31), B-4000 Liège, Belgium, Y.Crama@ulg.ac.be Linda S. Moonen (corresponding author),

More information

Lecture 8 Network Optimization Algorithms

Lecture 8 Network Optimization Algorithms Advanced Algorithms Floriano Zini Free University of Bozen-Bolzano Faculty of Computer Science Academic Year 2013-2014 Lecture 8 Network Optimization Algorithms 1 21/01/14 Introduction Network models have

More information

R u t c o r Research R e p o r t. Uniform partitions and Erdös-Ko-Rado Theorem a. Vladimir Gurvich b. RRR , August, 2009

R u t c o r Research R e p o r t. Uniform partitions and Erdös-Ko-Rado Theorem a. Vladimir Gurvich b. RRR , August, 2009 R u t c o r Research R e p o r t Uniform partitions and Erdös-Ko-Rado Theorem a Vladimir Gurvich b RRR 16-2009, August, 2009 RUTCOR Rutgers Center for Operations Research Rutgers University 640 Bartholomew

More information

An approximation algorithm for the minimum latency set cover problem

An approximation algorithm for the minimum latency set cover problem An approximation algorithm for the minimum latency set cover problem Refael Hassin 1 and Asaf Levin 2 1 Department of Statistics and Operations Research, Tel-Aviv University, Tel-Aviv, Israel. hassin@post.tau.ac.il

More information

Fixed-charge transportation problems on trees

Fixed-charge transportation problems on trees Fixed-charge transportation problems on trees Gustavo Angulo * Mathieu Van Vyve * gustavo.angulo@uclouvain.be mathieu.vanvyve@uclouvain.be November 23, 2015 Abstract We consider a class of fixed-charge

More information

The Capacity of a Network

The Capacity of a Network The Capacity of a Network April Rasala Lehman MIT Collaborators: Nick Harvey and Robert Kleinberg MIT What is the Capacity of a Network? Source a Source b c d e Sink f Sink What is the Capacity of a Network?

More information

A Multi-Exchange Local Search Algorithm for the Capacitated Facility Location Problem

A Multi-Exchange Local Search Algorithm for the Capacitated Facility Location Problem A Multi-Exchange Local Search Algorithm for the Capacitated Facility Location Problem Jiawei Zhang Bo Chen Yinyu Ye October 19, 2003 Abstract We present a multi-exchange local search algorithm for approximating

More information

Consecutive ones Block for Symmetric Matrices

Consecutive ones Block for Symmetric Matrices Consecutive ones Block for Symmetric Matrices Rui Wang, FrancisCM Lau Department of Computer Science and Information Systems The University of Hong Kong, Hong Kong, PR China Abstract We show that a cubic

More information

Earliest Arrival Flows with Multiple Sources. Imran Rauf

Earliest Arrival Flows with Multiple Sources. Imran Rauf Algorithms and Complexity Group (AG1) Max-Planck-Institut für Informatik Saarbrücken, Germany Earliest Arrival Flows with Multiple Sources Imran Rauf March 2005 Master Thesis in Computer Science Supervisor:

More information

Machine Minimization for Scheduling Jobs with Interval Constraints

Machine Minimization for Scheduling Jobs with Interval Constraints Machine Minimization for Scheduling Jobs with Interval Constraints Julia Chuzhoy Sudipto Guha Sanjeev Khanna Joseph (Seffi) Naor Abstract The problem of scheduling jobs with interval constraints is a well-studied

More information

Maximum flow problem (part I)

Maximum flow problem (part I) Maximum flow problem (part I) Combinatorial Optimization Giovanni Righini Università degli Studi di Milano Definitions A flow network is a digraph D = (N,A) with two particular nodes s and t acting as

More information

Precoloring extension on chordal graphs

Precoloring extension on chordal graphs Precoloring extension on chordal graphs Dániel Marx 17th August 2004 Abstract In the precoloring extension problem (PrExt) we are given a graph with some of the vertices having a preassigned color and

More information

Lecture 15 (Oct 6): LP Duality

Lecture 15 (Oct 6): LP Duality CMPUT 675: Approximation Algorithms Fall 2014 Lecturer: Zachary Friggstad Lecture 15 (Oct 6): LP Duality Scribe: Zachary Friggstad 15.1 Introduction by Example Given a linear program and a feasible solution

More information

Acyclic Digraphs arising from Complete Intersections

Acyclic Digraphs arising from Complete Intersections Acyclic Digraphs arising from Complete Intersections Walter D. Morris, Jr. George Mason University wmorris@gmu.edu July 8, 2016 Abstract We call a directed acyclic graph a CI-digraph if a certain affine

More information

A Brooks-Type Theorem for the Bandwidth of Interval Graphs

A Brooks-Type Theorem for the Bandwidth of Interval Graphs A Brooks-Type Theorem for the Bandwidth of Interval Graphs Mitchel T. Keller a, Stephen J. Young b a School of Mathematics, Georgia Institute of Technology, Atlanta, Georgia 3033-0160 U.S.A. b School of

More information

Deciding Emptiness of the Gomory-Chvátal Closure is NP-Complete, Even for a Rational Polyhedron Containing No Integer Point

Deciding Emptiness of the Gomory-Chvátal Closure is NP-Complete, Even for a Rational Polyhedron Containing No Integer Point Deciding Emptiness of the Gomory-Chvátal Closure is NP-Complete, Even for a Rational Polyhedron Containing No Integer Point Gérard Cornuéjols 1 and Yanjun Li 2 1 Tepper School of Business, Carnegie Mellon

More information

Scheduling Maintenance Jobs in Networks

Scheduling Maintenance Jobs in Networks Scheduling Maintenance Jobs in Networks Fidaa Abed, Lin Chen, Yann Disser, Martin Groß 4, Nicole Megow 5, Julie Meißner 6, Alexander T. Richter 7, and Roman Rischke 8 University of Jeddah, Jeddah, Saudi

More information

Complexity analysis of job-shop scheduling with deteriorating jobs

Complexity analysis of job-shop scheduling with deteriorating jobs Discrete Applied Mathematics 117 (2002) 195 209 Complexity analysis of job-shop scheduling with deteriorating jobs Gur Mosheiov School of Business Administration and Department of Statistics, The Hebrew

More information

Lecture 1. 1 Overview. 2 Maximum Flow. COMPSCI 532: Design and Analysis of Algorithms August 26, 2015

Lecture 1. 1 Overview. 2 Maximum Flow. COMPSCI 532: Design and Analysis of Algorithms August 26, 2015 COMPSCI 532: Design and Analysis of Algorithms August 26, 205 Lecture Lecturer: Debmalya Panigrahi Scribe: Allen Xiao Oeriew In this lecture, we will define the maximum flow problem and discuss two algorithms

More information

Fundamental Domains for Integer Programs with Symmetries

Fundamental Domains for Integer Programs with Symmetries Fundamental Domains for Integer Programs with Symmetries Eric J. Friedman Cornell University, Ithaca, NY 14850, ejf27@cornell.edu, WWW home page: http://www.people.cornell.edu/pages/ejf27/ Abstract. We

More information

A polynomial-time approximation scheme for the two-machine flow shop scheduling problem with an availability constraint

A polynomial-time approximation scheme for the two-machine flow shop scheduling problem with an availability constraint A polynomial-time approximation scheme for the two-machine flow shop scheduling problem with an availability constraint Joachim Breit Department of Information and Technology Management, Saarland University,

More information

Integer Linear Programming (ILP)

Integer Linear Programming (ILP) Integer Linear Programming (ILP) Zdeněk Hanzálek, Přemysl Šůcha hanzalek@fel.cvut.cz CTU in Prague March 8, 2017 Z. Hanzálek (CTU) Integer Linear Programming (ILP) March 8, 2017 1 / 43 Table of contents

More information