Given a set of $n$ values of the form $(a, b)$ where $a$ and $b$ are integers. We need to choose $k$ values from the set such that sum(of all $a$'s in $k$)/sum(of all $b$'s in $k$) is maximized.
2026-04-05 08:59:31.1775379571
Maximise Fractions
43 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in ALGORITHMS
- Least Absolute Deviation (LAD) Line Fitting / Regression
- Do these special substring sets form a matroid?
- Modified conjugate gradient method to minimise quadratic functional restricted to positive solutions
- Correct way to prove Big O statement
- Product of sums of all subsets mod $k$?
- (logn)^(logn) = n^(log10+logn). WHY?
- Clarificaiton on barycentric coordinates
- Minimum number of moves to make all elements of the sequence zero.
- Translation of the work of Gauss where the fast Fourier transform algorithm first appeared
- sources about SVD complexity
Related Questions in FRACTIONS
- Can we find integers $x$ and $y$ such that $f,g,h$ are strictely positive integers
- How would I simplify this fraction easily?
- Decimal expansion of $\frac{1}{p}$: what is its period?
- To find the Modulus of a complex number
- Tan of difference of two angles given as sum of sines and cosines
- Positive Integer values of a fraction
- What is the range of the function $f(x)=\frac{4x(x^2+1)}{x^2+(x^2+1)^2}$?
- In resticted domain , Applying the Cauchy-Schwarz's inequality
- for $x,y,z\ge 0$, $x+y+z=2$, prove $\frac{x}{1+y^2}+\frac{y}{1+z^2}+\frac{z}{1+x^2}\ge\frac{18}{13}$
- Interesting inequalities
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I have a relatively efficient algorithm, with time complexity $\mathcal O(n^3)$, assuming that all the $b_i$ are nonnegative; I don't have a good way of dealing with the possibly-negative case.
Suppose we want to know if it's possible to choose indices $i_1, \dots, i_k$ such that $$\frac{a_{i_1} + \dots + a_{i_k}}{b_{i_1} + \dots + b_{i_k}} \ge x.$$ We can now rewrite this equation as $$(a_{i_1} + \dots + a_{i_k}) - (b_{i_1} + \dots + b_{i_k})x \ge 0 \iff (a_{i_1} - b_{i_1}x) + \dots + (a_{i_k} - b_{i_k}x) \ge 0.$$ It's easy to test if this is possible to do: just sort all the values $a_1 - b_1x, a_2 - b_2x, \dots, a_n - b_nx$, choose the $k$ largest (or just choose the $k$ largest in $\mathcal O(n)$ time), and see if their sum is nonnegative.
(If the $b_i$ values can be negative, then this doesn't work, because the denominator $b_{i_1} + \dots + b_{i_k}$ might be less than $0$, reversing the inequality. Figuring out the best choice of pairs to use is then much harder, and I don't see how to deal with this.)
For different values of $x$, the order of the values $a_i - b_ix$ may be different as well, and so the choice of $k$ largest values may differ. But there's a limit to how much this order can vary. Consider two pairs $(a_i, b_i)$ and $(a_j, b_j)$. We have $$a_i - b_i x \ge a_j - b_j x \iff a_i - a_j \ge (b_i -b_j)x \iff \begin{cases}\frac{a_i - a_j}{b_i - b_j} \ge x, & b_i > b_j \\ \frac{a_i - a_j}{b_i - b_j} \le x, & b_i < b_j.\end{cases}$$ So the order of $a_i - b_i x$ and $a_j - b_j x$ changes only at $x = \frac{a_i - a_j}{b_i - b_j}$ (unless $b_i = b_j$, in which case their order never changes).
So if we think of the values $\frac{a_i - a_j}{b_i-b_j}$ (for all pairs $i$ and $j$) as breaking up $\mathbb R$ into $\binom{n}{2}+1$ disjoint intervals (at most), then on each interval, the order of $a_i - b_i x$ (and therefore, the optimal choice of pairs $(a_i,b_i)$) is consistent. So we can choose a test value of $x$ on each interval, choose the $k$ largest values of $a_i - b_i x$, and compute the quantity $\frac{a_{i_1} + \dots + a_{i_k}}{b_{i_1} + \dots + b_{i_k}}$ for them. For one of the test values, we'll see the largest possible value of this quantity.