Answer:
x=28 and y=8
Explanation:
In general for the proposed algorithm in terms of 'x' and 'y' the recurrence relation will result as:
T(n)=xT(n/y)cn;
The objective is to find such a combination of 'x' and 'y' which
KO's results in lower asymptotic complexity than the KO's..
KO's complexity:
T(n)=3T(n/2) cn
Using master's theorem:
a=3,b=2,f(n) = n => c=1
As 1) = log23 = 1.585> (c logia
hence from the first case of master's theorem