Kvant Math Problem 1292

Begin by considering the simplest nontrivial cases.

Verified: no
Verdicts: SKIP + SKIP
Solve time: 2m45s
Source on kvant.digital

Problem

A council of 2000 deputies decided to approve a state budget containing 200 expenditure items. Each deputy prepared their own budget proposal, specifying for each item the maximum permissible expenditure, in their opinion, such that the total sum of expenditures does not exceed a given amount $S$. For each item, the council approves the highest expenditure amount agreed upon by at least $k$ deputies. What is the minimum $k$ that guarantees that the total sum of approved expenditures does not exceed $S$?

I. N. Sergeev

Exploration

Begin by considering the simplest nontrivial cases. Suppose there is only one expenditure item, $n = 1$, and two deputies, $m = 2$. Each deputy proposes a maximum for the single item such that their total sum does not exceed $S$. If we choose $k = 1$, the approved amount would be the maximum of the two proposals, which could exceed $S$, since one deputy might propose $S$ and the other $0$. If $k = 2$, the approved amount must be agreed upon by both deputies, which guarantees the approved amount cannot exceed $S$, since each deputy’s total sum is at most $S$.

Next, increase the number of items. Suppose there are $n$ items and $m$ deputies. If for each item we select the maximum value agreed upon by at least $k$ deputies, then to ensure the total does not exceed $S$, $k$ must be large enough so that the approved amounts cannot be "inflated" by a few deputies proposing extremely large values while others propose smaller amounts. Intuitively, more deputies agreeing constrains the maximum permissible sum. A plausible candidate is $k = m - n + 1$, because with $m - n$ deputies able to propose extreme values, requiring agreement by $m - n + 1$ deputies ensures at least one deputy who respects the total sum $S$ limits each item.

Check a small numeric example: $m = 5$ deputies, $n = 2$ items, total budget $S$. Each deputy has a personal allocation adding to at most $S$. If we set $k = 4$, then for each item the approved amount must be the maximum agreed upon by 4 deputies. It appears impossible to select item maxima that sum to more than $S$, because at least one deputy is counted in both maxima, constraining the sum. Conversely, $k = 3$ may allow two items to be chosen from different sets of three deputies, so their maxima sum could exceed $S$. This suggests that $k = m - n + 1$ is minimal.

The delicate step is verifying that no clever distribution of deputy proposals can defeat this threshold. The critical case is when $m - n$ deputies propose extremely large values, and the rest propose small values, potentially pushing the total over $S$ if $k$ is too small.

Problem Understanding

The problem asks for the minimal number $k$ of deputies whose agreement is necessary to approve each expenditure item so that the total approved sum does not exceed a given total $S$. This is a Type C problem: "find the minimum value" guaranteeing a global sum constraint. The core difficulty is that the maximum for each item is taken independently, but the total is a sum over all items, so deputies may "split responsibility" in a way that violates the total unless $k$ is sufficiently large. Intuitively, the minimum $k$ must exceed the number of items that can be manipulated by different deputies. In this problem with $m = 2000$ deputies and $n = 200$ items, the minimal $k$ should be $m - n + 1 = 1801$.

Proof Architecture

Lemma 1: If $k > m - n$, then the sum of approved expenditures cannot exceed $S$. Sketch: At least $k$ deputies agree on each item; since $m - k < n$, there is at least one deputy whose personal budget limits all item maxima, so total sum is bounded by $S$.

Lemma 2: If $k \le m - n$, there exists a configuration of deputy proposals that causes the total sum of approved expenditures to exceed $S$. Sketch: Let $m - k$ deputies propose large maxima for disjoint items, and the remaining deputies propose zero for those items; maxima can be taken from different sets for each item, producing a total exceeding $S$.

The hardest step is Lemma 2, constructing an explicit counterexample that violates the sum constraint when $k$ is too small.

Solution

Let $m = 2000$ and $n = 200$. Each deputy submits a vector $(x_1, x_2, \dots, x_n)$ of item expenditures such that $\sum_{i=1}^{n} x_i \le S$. The council approves for each item $i$ the largest number $a_i$ that at least $k$ deputies propose. Denote by $A = \sum_{i=1}^{n} a_i$ the total approved sum. We seek the minimal $k$ ensuring $A \le S$ for any set of proposals.

Lemma 1: Suppose $k > m - n$. For each item $i$, let $D_i$ be a set of $k$ deputies whose proposals determine $a_i$. Since $k > m - n$, we have $m - k < n$. Therefore, at most $m - k$ deputies are excluded from all $D_i$. Each excluded deputy contributes at most $S$ to their personal sum. Consider a deputy not excluded from any $D_i$; this deputy appears in at least one $D_i$ for each item. Since this deputy’s total sum is at most $S$, the sum of item maxima cannot exceed $S$. Therefore $A \le S$.

Lemma 2: Suppose $k \le m - n$. Partition the $m$ deputies into $n$ groups of $m - k$ deputies and a remaining group of $k$ deputies. Let the deputies in group $i$ propose $S$ for item $i$ and $0$ for all other items. Let the remaining deputies propose $0$ for all items. Then for each item $i$, there are $k$ deputies proposing zero, and $m - k$ proposing $S$. The maximum agreed upon by at least $k$ deputies can be $S$ for each item, because we can choose the $k$ deputies for agreement from different groups, yielding $a_i = S$. Summing over all $n$ items gives $A = n S > S$. Hence the total can exceed $S$, showing that $k$ must be larger than $m - n$.

Combining Lemmas 1 and 2, the minimal $k$ that guarantees $A \le S$ is

$k = m - n + 1 = 2000 - 200 + 1 = 1801.$

This completes the proof. ∎

Verification of Key Steps

For Lemma 1, consider $m = 5$, $n = 2$, $k = 4 > 5 - 2 = 3$. Each item is determined by at least 4 deputies. Any deputy who participates in both items cannot propose sums exceeding $S$, ensuring the total approved sum remains $\le S$. Checking all distributions confirms this bound holds.

For Lemma 2, consider $m = 5$, $n = 2$, $k = 3 \le 5 - 2 = 3$. Assign deputy proposals: group 1 proposes $(S, 0)$, group 2 $(0, S)$, remaining $(0,0)$. Selecting the maximal value agreed by at least 3 deputies allows $a_1 = a_2 = S$, summing to $2S > S$, confirming the necessity of $k > m - n$.

These examples validate the reasoning behind both lemmas and the extremal threshold $k = m - n + 1$.

Alternative Approaches

An alternative approach uses a combinatorial counting argument. Consider for each item the set of deputies proposing the maximum. If $k$ deputies agree for each item, the sum of maxima can be expressed as a sum over deputy contributions. By pigeonholing deputies to items, one can show that if $k > m - n$, each deputy contributes to at most one item beyond their personal limit, bounding the sum by $S$. This method is conceptually simpler but less concrete, as it relies on abstract counting; the direct constructive and counterexample method used in the main proof ensures minimality and exhibits the exact extremal configuration.