Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
10answers
1k views

Can I make this C++ code faster without making it much more complex?

here's a problem I've solved from a programming problem website(codechef.com in case anyone doesn't want to see this solution before trying themselves). This solved the problem in about 5.43 seconds ...
6
votes
4answers
722 views

CodeChef and Challenge-style programming in the context of (my) career growth [closed]

I've recently stumbled upon a site called CodeChef; I must admit that it has peaked my interest. I'm wondering if spending time doing these puzzles (after all, that is what they are), are worth the ...
4
votes
3answers
169 views

Is high-speed sorting impossible with Ruby?

I've studied the poignant guide and it really has helped me pick up the language pretty fast. After that, I started solving some coding puzzles using Ruby. It just helps a lot to get used to the ...
3
votes
1answer
193 views

TimeOut on CodeChef

I'm new to CodeChef and thought of trying a few problems, so I solved the "Bytelandian gold coins" problem. (http://www.codechef.com/problems/COINS/) I'm getting instant results on my computer, ...
3
votes
3answers
631 views

Codechef practice question help needed - find trailing zeros in a factorial

I have been working on this for 24 hours now, trying to optimize it. The question is how to find the number of trailing zeroes in factorial of a number in range of 10000000 and 10 million test cases ...
2
votes
2answers
98 views

understanding the mathematical algorithm behind the TPRODUCT problem

I've been trying to solve the codechef problem: http://www.codechef.com/MAY11/problems/TPRODUCT/ They have given the post-contest analysis here: ...
1
vote
4answers
149 views

which is time consuming construct in following program?

while submitting a solution for practise problem 6(odd) i got TLE error but while using using print and scanf in place cin and cout my sol was submitted successfully with 0.77s time..i want to know ...
1
vote
2answers
154 views

Decreasing memory usage, C, CodeChef

I'm doing this problem: http://www.codechef.com/problems/FCTRL I have the solution, but, the memory usage is coming out to be 1.6 MB, which, apparently, is too much. I don't understand how I can ...
1
vote
2answers
94 views

CodeChef #3, Easy, Keep getting wrong answer

This is the problem I'm working on: http://www.codechef.com/problems/HS08TEST/ And this is my solution: #include <stdio.h> int main (void) { int withdraw_i; float balance_i; ...
0
votes
0answers
59 views

SIGSEGV in code

Hi all I am trying to solve a problem on SPOJ where given 5 cards , I have to determine the hand of POKER. My code is running fine on Dev C++, but on the online judge (which is similar to ideone.com) ...
0
votes
2answers
33 views

“PDF” as a supported *language* in codechef? / Possible to use PDF for scripting? [closed]

I just read this post on codechef blogs, it has PDF as a supported language. I'm new to codechef and this is the first time i'm seeing something like this. The blog reads... "...So now along these ...
0
votes
0answers
23 views

codechef javascript submission

how can I submit solutions in Javascript for Codechef questions? can you give me an example to handle js input at codechef? www.codechef.com
0
votes
0answers
28 views

Maximize probability of solving K-1 problems out of given N problems

This problem appeared in Codechef December cook-off Statement: Given N problems and their respective probability of being solved. You are to choose any K problems out of them such that probability of ...
0
votes
0answers
25 views

CodeChef Solutions by person who posted the contest

How to view solutions to codechef problems that are posted directly by the problem setter (after the contest has ended) ?
0
votes
0answers
69 views

which modern technology stack to use to build a site like TopCoder, CodeChef, etc [closed]

I have been programming in Java for a few years now and am looking to learn a new technology stack. I typically learn well when I am doing a project than writing code snippets. Code evaluation sites ...
0
votes
1answer
124 views

Unable to solve a codechef problem

Is (O(n),O(log n)) approach sufficient to solve the problem - http://www.codechef.com/problems/MULTQ3/ ? (Update time - O(n), query time - O(log n)) My solution - solved using the above approach ...
0
votes
0answers
251 views

CodeChef problems not so original? [closed]

I have found CodeChef site but quick look on problems http://www.codechef.com/problems/easy makes me think that problems are copied from SPOJ. Is that true or only some of SPOJ problems are on ...
0
votes
0answers
191 views

CodeChef Array Transform Program! - Java

Here's the Problem Statement : Given n numbers, you can perform the following operation any number of times : Choose any subset of the numbers, none of which are 0. Decrement the ...
0
votes
0answers
172 views

CodeChef Array Transform Program!

Here's the Problem Statement : Given n numbers, you can perform the following operation any number of times : Choose any subset of the numbers, none of which are 0. Decrement the numbers ...
0
votes
2answers
242 views

Codechef python runtime error

I always get a runtime error using python for submission on codechef. Can some one please help. Tried answering other questions too.. same error Works fine on my comp though!(I use python 2.6.5 on my ...
0
votes
1answer
107 views

c++ compile error in codechef.com

I am trying to submit the solution of Adding Least Common Multiples(July contest) in codechef.com. But After submission I have got an error /sources/tested.cpp:1: error: expected unqualified-id ...
-2
votes
2answers
119 views

Get all Subsets of String through Dynamic Programming - Programming Contest,Interview

I have a string lets say 123 I need Output as 1,2,3,12,23,13,123 . I know this can be achieved using Dynamic programming . So I need help. The Length of the input string is in the range 10 ^ 6 . ...