David Shmoys

David Shmoys
David Shmoys
Fields Computer Science, Computational complexity theory
Institutions Cornell
Alma mater Princeton,
University of California, Berkeley
Doctoral advisor Eugene Lawler

David Shmoys is currently a Professor in both the School of Operations Research and Information Engineering[1] and the Department of Computer Science[2] at Cornell University. He obtained his Ph.D. from the University of California, Berkeley in 1984. His major focus has been in the design and analysis of algorithms for discrete optimization problems. In particular, his work has highlighted the role of linear programming in the design of approximation algorithms for NP-hard problems. He is known for his pioneering research on providing first constant factor performance guarantee for several scheduling and clustering problems including the k-center and k-median problems and the generalized assignment problem. Polynomial-time approximation schemes that he developed for scheduling problems have found applications in many subsequent works. His current research includes stochastic optimization, computational sustainability and optimization techniques in computational biology. Shmoys is married to Éva Tardos, who is a Jacob Gould Schurman Professor of Computer Science at Cornell University.

Contents

Key Contributions

Two of his key contributions are

(1) Constant factor approximation algorithm for the Generalized Assignment Problem and Unrelated Parallel Machine Scheduling.

(2) Constant factor approximation algorithm for k-Medians and Facility location problem.

Both these contributions are described briefly below:

Generalized Assignment Problem & Unrelated Parallel Machine Scheduling

The paper [1] is a joint work by David Shmoys and Eva Tardos.

The generalized assignment problem can be viewed as the following problem of scheduling unrelated parallel machine with costs. Each of n independent jobs (denoted J) have to be processed by exactly one of m unrelated parallel machines (denoted M). Unrelated implies same job might take different amount of processing time on different machines. Job j takes pi,j time units when processed by machine i and incurs a cost  c_{i,j} , i=1,2,..,m; j=1,2,..,n; n \geq m. Given C and Ti,i = 1,2,..,m, we wish to decide if there exists a schedule with total cost at most C such that for each machine i its load, the total processing time required for the jobs assigned to it is at most Ti,i = 1,2,..,m. By scaling the processing times, we can assume, with out loss of generality, that the machine load bounds satisfy T1 = T2 = .. = Tm = T. ``In other words, generalized assignment problem is to find a schedule of minimum cost subject to the constraint that the makespan, that the maximum machine load is at most T ".

The work of Shmoys with Lenstra and Tardos cited here [2] gives a 2 approximation algorithm for the unit cost case. The algorithm is based on a clever design of linear program using parametric pruning and then rounding an extreme point solution of the linear program deterministically. Algorithm for the generalized assignment problem is based on a similar LP through parametric pruning and then using a new rounding technique on a carefully designed bipartite graph. We now state the LP formulation and briefly describe the rounding technique.

We guess the optimum value of makespan T and write the following LP. This technique is known as parametric pruning.

LP(T)::\sum_{i=1}^{m} \sum_{j=1}^n c_{ij} x_{ij} \le C ;

 \sum_{i=1}^m x_{ij} = 1 \qquad j=1, \ldots, n;
 \sum_{i=1}^m p_{ij}x_{ij} \leq T \qquad i=1, \ldots, m;
 x_{ij} \geq 0 \qquad i=1, \ldots, m, \quad j=1, \ldots, n;
 x_{ij}=0 \qquad \text{if} \qquad p_{ij} \geq T, \qquad i=1, \ldots, m, \quad j=1, \ldots, n;

The obtained LP solution is then rounded to an integral solution as follows. A weighted bipartite graph  G=(W \cup V, E) is constructed. One side of the bipartite graph contains the job nodes,  W =\{w_j | j \in J\}, and the other side contains several copies of each machine node, V = {vi,s | i = 1,2,..,m;s = 1,2,..,ki}, where  k_i=\lceil \sum_{j} x_{ij} \rceil. To construct the edges to machine nodes corresponding to say machine i, first jobs are arranged in decreasing order of processing time pij. For simplicity, suppose,  p_{i1} \geq p_{i2} \geq \ldots \geq p_{in}. Now find the minimum index j1, such that  \sum_{i}^{j_1} x_{ij} \geq 1. Include in E all the edges (wj,vi1,j = 1,2,..,j1 − 1) with nonzero xij and set their weights to x'_{v_{i1}j}= x_{ij} . Create the edge  (w_{j_1}, v_{i1}) and set its weight to  x'_{v_{i1}j_1}=1-\sum_{i=1}^{j_1-1} x'_{v_{i1}j} . This ensures that the total weight of the edges incident on the vertex vi1 is at most 1. If x'_{v_{i1}j_1} < x_{ij_1}, then create an edge (w_{j_1}, v_{i2}) with weight  x'_{v_{i2}j_1}=x_{ij}-x'_{v_{i1}j_1} . Continue with assigning edges to vi2 in a similar way.

In the bipartite graph thus created, each job node in W has a total edge weight of 1 incident on it, and each machine node in V has edges with total weight at most 1 incident on it. Thus the vector x' is an instance of a fractional matching on G and thus it can be rounded to obtain an integral matching of same cost.

Now considering the ordering of processing times of the jobs on the machines nodes during construction of G and using an easy charging argument, the following theorem can be proved:

Theorem: If LP(T) has a feasible solution then a schedule can be constructed with makespan T + maxi,jpi,j and cost C.

Since  max_{i,j} p_{i,j} \leq T , a 2 approximation is obtained.

K-medians and Facility Location Problem

The paper [3] is a joint work by Moses Charikar, Sudipto Guha, Eva Tardos and David Shmoys. They obtain a  6 \frac{2}{3} approximation to the metric k medians problem. This was the first paper to break the previously best known  O(\log{k}\ \log{\log{k}}) approximation.

Shmoys has also worked extensively on the facility location problem. His recent results include obtaining a 3 approximation algorithm for the capacitated facility location problem. The joint work with Fabian Chudak, [4] has resulted in improving the previous known 5.69 approximation for the same problem. Their algorithm is based on a variant of randomized rounding called the randomized rounding with a backup, since a backup solution is incorporated to correct for the fact that the ordinary randomized rounding rarely generates a feasible solution to the associated set covering problem.

For the uncapacitated version of the facility location problem, again in a joint work with Chudak [5] he obtained a  (1+2/e) \approx 1.736 -approximation algorithm which was a significant improvement on the previously known approximation guarantees. The improved algorithm works by rounding an optimal fractional solution of a linear programming relaxation and using the properties of the optimal solutions of the linear program and a generalization of a decomposition technique.

Awards & Honors

David Shomys is an ACM Fellow[3]. He received College of Engineering Sonny Yau Excellence in Teaching Award three times and has been awarded NSF Presidential Young Investigator Award.

External links

References

  1. ^ D.B. Shmoys and E. Tardos (1993). "An approximation algorithm for the generalized assignment problem". Mathematical Programming A 62 (1): 461–474. doi:10.1007/BF01585178. http://portal.acm.org/citation.cfm?id=195719. 
  2. ^ J. K. Lenstra, D. B. Shmoys and É. Tardos (1990). "Approximation algorithms for scheduling unrelated parallel machines". Mathematical Programming: Series a and B 62 (1): 259–271. doi:10.1007/BF01585745. http://portal.acm.org/citation.cfm?id=81019. 
  3. ^ Moses Charikar, Sudipto Guha, Eva Tardos and David B. Shmoys (2002). "A Constant-Factor Approximation Algorithm for the k-Median Problem". J. Comput. Syst. Sci. 65 (1): 129. doi:10.1006/jcss.2002.1882. 
  4. ^ Fabian A. Chudak and David B. Shmoys (2005). "Improved Approximation Algorithms for a Capacitated Facility Location Problem". Mathematical Programming: Series a and B archive 102 (2): 207–222. doi:10.1007/s10107-004-0524-9. http://portal.acm.org/citation.cfm?id=1047776. 
  5. ^ Fabian A. Chudak and David B. Shmoys (2003). "Improved Approximation Algorithms for the Uncapacitated Facility Location Problem". SIAM J. Comput. 33 (1). http://epubs.siam.org/sam-bin/dbq/article/40575. 

Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Edge coloring — A 3 edge coloring of the Desargues graph. In graph theory, an edge coloring of a graph is an assignment of “colors” to the edges of the graph so that no two adjacent edges have the same color. For example, the figure to the right shows an edge… …   Wikipedia

  • Job shop scheduling — For other uses, see Scheduling. Job shop scheduling (or Job shop problem) is an optimization problem in computer science in which ideal jobs are assigned to resources at particular times. The most basic version is as follows: We are given n jobs… …   Wikipedia

  • Metric k-center — In graph theory, the metric k center, is a combinatorial optimization problem studied in theoretical computer science. Given n cities with specified distances, one wants to build k warehouses in different cities and minimize the distance of the… …   Wikipedia

  • Travelling salesman problem — The travelling salesman problem (TSP) is an NP hard problem in combinatorial optimization studied in operations research and theoretical computer science. Given a list of cities and their pairwise distances, the task is to find a shortest… …   Wikipedia

  • Problem des Handlungsreisenden — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (auch Rundreiseproblem, engl. Traveling Salesman Problem… …   Deutsch Wikipedia

  • Botenproblem — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (engl. Traveling Salesman Problem, kurz TSP) ist ein… …   Deutsch Wikipedia

  • Euklidisches Traveling-Salesman-Problem — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (engl. Traveling Salesman Problem, kurz TSP) ist ein… …   Deutsch Wikipedia

  • Handlungsreisendenproblem — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (engl. Traveling Salesman Problem, kurz TSP) ist ein… …   Deutsch Wikipedia

  • Metrisches Traveling-Salesman-Problem — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (engl. Traveling Salesman Problem, kurz TSP) ist ein… …   Deutsch Wikipedia

  • Problem des Handelsreisenden — Optimaler Reiseweg eines Handlungsreisenden durch die 15 größten Städte Deutschlands. Die angegebene Route ist die kürzeste von 43.589.145.600 möglichen. Das Problem des Handlungsreisenden (engl. Traveling Salesman Problem, kurz TSP) ist ein …   Deutsch Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”