This is actually a SPOJ problem: WAYS

Now this is a very easy task what we need to do is to compute the Central binomial coefficients.

Howver the problem setter include a very notorious source limit of 120 bytes,so my question is how to get pass that source code limit in the languages that are allowed?

link|improve this question

74% accept rate
2  
What have you tried? What is your best solution so far? – Björn Pollex Mar 8 '11 at 7:38
feedback

2 Answers

up vote 5 down vote accepted

Assuming, that C(2n,n) = (2n)!/(n!)^2 = (2n(2n-1)/n^2) * C(2(n-1),n-1) = ((4n-2)/n)*C(2(n-1),n-1) here is function, which calculates central binomial:

int f(int n)
{
    return n==1? 2 : f(n-1)*(4*n-2)/n;
}

Edit: Here is probably shortest code:

int f(int n){return n<2?2:f(n-1)*(4*n-2)/n;}

It is only 44 characters.

link|improve this answer
The idea is good, but a loop is much shorter than recursion. – grep Mar 8 '11 at 7:57
@Ashot Martirosyan: Excellent! Got accepted :-) – Foool Mar 8 '11 at 8:00
@grep this code contains less than 120 characters. That's all I need. – Ashot Martirosyan Mar 8 '11 at 8:00
My accepted solution is about 101 bytes,however the core computation can be optimized much further. – Foool Mar 8 '11 at 8:07
@Ashot Martirosyan:f(n){return n<2?2:f(n-1)*(4*n-2)/n;} will do the work in SPOJ.However you can still shorten... – Foool Mar 8 '11 at 8:21
show 2 more comments
feedback

I haven't tried writing the code, but since the value of m is only 14, you could submit a table. Not sure if the code can be made shorter than this.

link|improve this answer
I have tried table using almost all shortening possible except the compression of the table but not getting through the source code limit. – Foool Mar 8 '11 at 7:43
What language are you using? Perhaps you can paste the code you have at hand. – Shamim Hafiz Mar 8 '11 at 7:48
I tried it using C,sorry I didn't saved it but it's just plain using arrays and usual shortening trick. – Foool Mar 8 '11 at 7:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.