We present a time-optimal deterministic distributed algorithm for approximating a minimum weight vertex cover in hypergraphs of rank f . This problem is equivalent to the Minimum Weight Set Cover problem in which the frequency of every element is bounded by f . The approximation factor of our algorithm is (f + ε). Let ∆ denote the maximum degree in the hypergraph. Our algorithm runs in the congest model and requires O(log ∆/ log log ∆) rounds, for constants ε ∈ (0, 1] and f ∈ N + . This is the first distributed algorithm for this problem whose running time does not depend on the vertex weights nor the number of vertices. Thus adding another member to the exclusive family of provably optimal distributed algorithms.For constant values of f and ε, our algorithm improves over the (f + ε)-approximation algorithm of [KMW06] whose running time is O(log ∆ + log W ), where W is the ratio between the largest and smallest vertex weights in the graph. Our algorithm also achieves an f -approximation for the problem in O(f log n) rounds, improving over the classical result of [KVY94] that achieves a running time of O(f log 2 n). Finally, for weighted vertex cover (f = 2) our algorithm achieves a deterministic running time of O(log n), matching the randomized previously best result of [KY11].We also show that integer covering-programs can be reduced to the Minimum Weight Set Cover problem in the distributed setting. This allows us to achieve an (f + ε)-approximaterounds, where f bounds the number of variables in a constraint, ∆ bounds the number of constraints a variable appears in, and M = max {1, ⌈1/a min ⌉}, where a min is the smallest normalized constraint coefficient. This improves over the results of [KMW06] for the integral case, which combined with rounding achieves the same guarantees in O ε −4 · f 4 · log f · log(M · ∆) rounds.In the Minimum Weight Hypergraph Vertex Cover (mwhvc) problem, we are given a hypergraph G = (V, E) with vertex weights w : V → {1, . . . , W }. 1 The goal is to find a minimum weight cover U ⊆ V such that ∀e ∈ E : e ∩ U = ∅. In this paper we develop a distributed approximation algorithm for mwhvc in the congest model. The approximation ratio is f + ε, where f denotes the rank of the hypergraph (i.e., f is an upper on the size of every hyperedge). The mwhvc problem is a generalization of the Minimum Weight Vertex Cover (mwvc) problem (in which f = 2). The mwhvc problem is also equivalent to the Minimum Weight Set Cover Problem (the rank f of the hypergraph corresponds to the maximum frequency of an element). Both of these problems are among the classical NP-hard problems presented in [Kar72].We consider the following distributed setting for the mwhvc problem. The communication network is a bipartite graph H(E ∪ V, {{e, v} | v ∈ e}). We refer to the network vertices as nodes and network edges as links. The nodes of the network are the hypergraph vertices on one side and hyperedges on the other side. There is a network link between vertex v ∈ V and hyperedge e ∈ E iff v ∈ e. The computation is per...