CodeChef is a global programming community. They host contests, trainings and events for programmers around the world.

learn more… | top users | synonyms

1
vote
2answers
123 views

Finding the path with shortest waiting time

I'm working on this problem, from a competition. I'll describe the problem in brief here. A chef is trying to reach to a meeting before time T, but he wants to do that with minimum waiting time at ...
0
votes
1answer
47 views

Codechef: reverse Polish Notation

This is the code for reverse polish notation. When I run it on unix it works fine but codechef says wrong answer. Please help. #include<stdio.h> #include<string.h> void push(char); void ...
-6
votes
0answers
64 views

Runtime Error on Codechef.com Excercise [closed]

I am submitting a solution for this question on CodeChef.com. But all it says is runtime error. However my program is running perfectly on my pc. Can anyone explain what I am doing wrong? My ...
1
vote
2answers
34 views

Nzec error on codechef despite putting a return 0

I've written the following code for a codechef problem. Everytime I submit I get a NZEC error. Any ideas? #include<stdio.h> int main() { int n=0,s=0; ...
1
vote
0answers
20 views

How many calculations are performed per second on codechef?

We can solve some problems by using the rule of the thumb of "10 million calculations are performed per second". I am interested in what machine is used by codechef to evaluate submissions and how ...
1
vote
2answers
156 views

Explain this algorithm

while solving the Palindrome problem on codechef I wrote an algorithm, which gave a TLE on test cases more than 10^6. So taking lead from people who had already solved it I wrote the following code in ...
0
votes
1answer
122 views

Finding the number of Disjoint Sets

I'm trying to find the number of disjoint sets for given N sets and M relations. For example given a relation "i j" ,I have to merge the sets containing these two elements. M and N can be as large as ...
1
vote
0answers
27 views

How is time limit calculated on codechef ?

In the march challenge of codechef, java solutions for the problem "Random Decreasing Function" have been accepted that take more than 30 seconds but the given time limit is 2 seconds. This is well ...
1
vote
1answer
27 views

How much data can I allocate on heap in codechef problems?

What is the maximum amount of data I can allocate in a solution in codechef ?
1
vote
4answers
221 views

Your answer will be considered as correct if it has an absolute or relative error less than 10^(−6)

In many Programming Problems, the above mentioned constraint is mentioned. I have seem this in codechef as well as SPOJ. E.g. Link-1 , Link-2 and many more. (See the section OUTPUT in these two ...
2
votes
1answer
34 views

Codechef : What does source limit mean ?

In a practise problem given on codechef, source limit is written under the problem. What does it mean? PS : If I allocate an array of size 1000 X 1000 and the source limit is 50000Bytes, then am I ...
0
votes
2answers
195 views

Why is this dynamic programming code incorrect? [closed]

I am doing this problem for a homework assignment. I have solved the problem using a standard bottom up Dynamic Programming algorithm. My code shows the expected outcomes on my test cases but the ...
4
votes
1answer
66 views

Java : How is memory usage of a program calculated by a java compiler ?

I am solving this problem. It desires a memory limit of 50000bytes . So if I allocate a 2D array of int of size 1000 X 1000 , shouldn't it exceed the memory bounds ? PS : I saw this solution to the ...
2
votes
2answers
64 views

what's wrong with my solution?Count of Maximum[Code Chef]

Question.This is simple question yet i don't know what's wrong with this code? from collections import Counter def com(N,A): num_array=A.split() c=Counter(num_array) C=max(c.values()) ...
2
votes
3answers
140 views

Same code slower in Python3 as compared to Python2

I coded this problem at CodeChef and submitted it as Python3 solution: import sys n,k = map(int,sys.stdin.readline().split(" ")) nos = map(int,sys.stdin.readlines()) ans = 0 for i in nos: if ...
-1
votes
1answer
131 views

Efficient algorithm for the below [closed]

I was trying this question from codechef but somehow couldn't get an efficient algorithm than the general naive procedure of filling up the stacks as specified in the question.I was thinking whether ...
-1
votes
1answer
148 views

Issue with a puzzle solution in C language (CodeChef.com) [closed]

i've made my code to solve a puzzle at http://www.codechef.com/problems/FCTRL According to what i've tested, the program works right for any string of number. Apparently, the CodeChef website reports ...
1
vote
2answers
43 views

Closing the buffered reader gives error in Online judge .

Closing the buffered reader in the following program gives a runtime error in the online judge codechef . The problem gets solved on removing the statement that closes the buffered reader . Should I ...
1
vote
1answer
485 views

chef recipe wait for git clone to finish

I've tried this a couple different ways, including creating a new recipe and notifying that recipe to run but I keep getting the same problem which is the cloned repo directory doesn't exist before ...
0
votes
0answers
159 views

Sprague-Grundy theorem to solve a game. (ASTRGAME at code chef)

I'm asking this here, because I didn't get an answer at the code chef forums. Thread at codechef. Hi guys. This is the first problem I've worked on. I'm getting a TLE error. Problem - ASTRGAME. ...
0
votes
0answers
51 views

Codechef Fierce Battles [closed]

I was solving the question of codechef fierce battles(http://www.codechef.com/problems/DRGNBOOL) and used the following solution.I tried for many input cases and it gives a correct answer,however when ...
0
votes
1answer
231 views

After Rebooting RHEL Server, chef-server can't start

"usr/sbin/setup-chef-server.sh " Error while chef-server start up Checking RabbitMQ... Starting CouchDB... Starting couchdb: already running[WARNING] Enabling Chef Services... Starting Chef ...
-7
votes
1answer
95 views

Repeatedly running into WRONG ANSWER with this code for CoinFlip on CodeChef. Please help me identify the error [closed]

Here's the problem link: http://www.codechef.com/NOV12/problems/CONFLIP/ Here's my code: #include <iostream> using namespace std; int main() { long int G, N, i, j; int I, Q, T; ...
0
votes
1answer
369 views

Simple Nim Game

I recently learnt the basic strategy of Nim game where there are piles of elements. Then one have to chose a pile and remove any number of elements from that pile. I found some problem that is said to ...
-2
votes
1answer
161 views

Optimizing C code -> Codechef solution time exceeded [closed]

What are tips and tricks so that my code can be executed in given time limit. May be some logical changes or anything. When I submit my solution in codechef it shows time limit exceeded but I think ...
1
vote
1answer
85 views

codechef drgnbool solution

I am trying out this problem in codechef - http://www.codechef.com/OCT12/problems/DRGNBOOL This is my solution def array_sum(a) sum=0 a.each do |x| sum=sum+x end return sum ...
1
vote
1answer
127 views

If one has an aim of being a good programmer , what should one prefer , Contributing to open source projects or solving codechef.com problems?

I am a college student keen to improve my Programming skills . I have two pathways to follow , 1) Contributing to OpenSource Projects 2)Solving puzzles at codechef.com Which one should I follow ?
1
vote
2answers
269 views

Any better algorithm possible here?

I am trying to solve this problem in Python. Noting that only the first kiss requires the alternation, any kiss that is not a part of the chain due to the first kiss can very well have a hug on the ...
0
votes
3answers
294 views

Execution Time consumed by C++ program [closed]

I regulary practice on various online judge, and was wondering if there is some code which could tell me about time taken by my local work machine to process particular test case. i am looking for ...
2
votes
3answers
147 views

what is the cause of runtime error(other) in the following code

I was trying to solve a problem( http://www.codechef.com/BTCD2012/problems/DOORS) on an online judge. Following is the code for the problem.When i submit the judge gives runtime error(other).Am i ...
0
votes
0answers
86 views

Maximum Profit path in a Grid

There is a modern city where people send their children to train under a master of programming. But this year, the master has received so many applicants that he decides to screen them using a simple ...
0
votes
1answer
198 views

codechef solution

I am currently doing this problem at codechef. I am getting "wrong answer" even after trying many times. Since its a type of competition I don't want any direct answer, but I am just wondering what ...
1
vote
1answer
73 views

Codechef PERMUT2 solution

Following website has the problem. http://www.codechef.com/problems/PERMUT2 I have been trying to code solution for PERMUT2. My below solution is failing on some test cases. Kindly help me uncover ...
5
votes
4answers
1k views

Find subsequences of a string whose length is as large as 10,000

I have a string whose size can be as large as "10,000". I have to count those SUBSEQUENCES which are divisible by 9. SUBSEQUENCE: A subsequence is an arrangement in which the order of characters of ...
2
votes
2answers
337 views

How to improve Dijkstra algorithm when querying n times?

I'm currently working on a problem at Codechef. You can find the problem statement here: Delivery Boy In short, the problem is asking to query n times the shortest path from a start to an end. My ...
0
votes
0answers
125 views

is there any other better way than raw_input() in python for online judge? [closed]

I think I get Time Limit Exceeded due to slow input and output. I had an efficient algorithm, which was not accepted in Python and gave TLE. But it got accepted when I coded the same algorithm in C++. ...
1
vote
1answer
211 views

Codechef Q - Why am I getting a “Wrong Answer” error

Question - A Little Elephant from the Zoo of Lviv likes lucky numbers very much. Everybody knows that the lucky numbers are positive integers whose decimal representation contains only the lucky ...
1
vote
1answer
216 views

Enormous Input - for loop faster than list comprehension

I'm trying to solve a codechef beginner problem - Enormous Input Test. My code a,b = [ int(i) for i in raw_input().split()] print [input()%b==0 for i in range(a)].count(True) gets timed out. ...
0
votes
2answers
2k views

Lazy propagation in segment tree?

Well, I was trying to solve this Flipping coins problem on Codechef. Am solving it with segment trees. But getting time limit exceed. I searched and found that I have to use lazy propagation. But I am ...
0
votes
1answer
459 views

Optimize Code for longest common sequence

I was trying to solve this practice problem, it is also quoted below. The Chef is planning a buffet for the DirectiPlex inauguration party, and everyone is invited. On their way in, each guest ...
1
vote
3answers
452 views

Handling large inputs in python

I started learning programming a few months ago and just recently found codechef. The problem is that on problems that use large amounts of input my code alwaqys exceehe time limit. I can't even seem ...
2
votes
1answer
356 views

Solving Codechef Problems in Java [closed]

I am a Java programmer. I find that many times even if my algorithm is correct, I get a Time Limit Exceeded on my submissions with codechef. Are there some techniques that one should employ while ...
3
votes
3answers
110 views

Why is one code faster than other even when iterations are more?

My code is short and has lesser number of iterations than the other but still it gets a time limit exceeded error while the other code is accepted on codechef.com. The codes are solution to the ...
2
votes
2answers
484 views

NZEC error in Python

this is a simple piece of code which is suppose to read n numbers and suppose to print how many numbers out of these n numbers are divisible by k n=int(raw_input()) k=int(raw_input()) ans=0 while n ...
-1
votes
1answer
140 views

CodeChef Daily Train Wrong Answer

So, in the last contest on CodeChef (February Cook-Off) I had what I thought was a working algorithm for this problem within about 15 minutes, but couldn't get the right answer. I tried forever, I've ...
0
votes
0answers
144 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
1answer
125 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
-3
votes
2answers
470 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 . ...
5
votes
3answers
270 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 ...
0
votes
1answer
370 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 ...

1 2