Computing Factorials of a huge number in C/C++: A tutorial
Hello @all,As in MARCH13 contest we needed to use primary school arithmetics once again, and as it is a topic that comes up quite frequentely here in the forums thanks to this problem, and also, as I...
View ArticleFLUSHOT - Editorial
PROBLEM LINKSPracticeContestDIFFICULTYEASYEXPLANATIONThe problem can be solved with a binary search approach. Given a value D, we can efficiently determine if there is a way to move each person with...
View Articlecan any one give code for this problem
For the input word and a number, print all possible combinations that have as many characters as specified by the number. For example, CAT 2 would produce CA, CT, AT and DOG 1 would produce D, O ,G...
View ArticleSTREETTA and SSTORY rejudged?
Can someone please tell me why the judge makes these changes without any notice or some explanation. If you decide to reevaluate some problem please explain why (wrong test-cases - modification of...
View ArticleLOWSUM - Editorial
PROBLEM LINK:PracticeContestAuthor:Vineet PaliwalTester:Roman RubanenkoEditorialist:Jingbo ShangDIFFICULTY:EASYPREREQUISITES:Sort, Priority Queue, Binary SearchPROBLEM:Given two arrays A[1..K],...
View ArticleQ & A on SE
"As you may already know, the Competitive Programming proposal as a Stack Exchange Q&A site is closed in 64% of its commitment phase by a moderator with a short notice. I've created a question...
View ArticleBest known algos for calculating nCr % M
I have often encountered calculating nCr problems the last one being one of the IIIT-M problems but it probably had weak test cases that got easy solutions AC. The other one...
View ArticlePROSUM getting wrong answer
For March challenge questin 2 :Little Chef and numbers I compiled the code in codeblocks and tested it for many conditions and it showed right answer. But in codechef its showing wrong answer . Kindly...
View ArticleConfusion in input/output format of march 14 problem story?
I submitted my solution to a similar problem in spoj. In that problem we only have to count the length and got AC. I've been trying this one for quite sometime. I'm not asking for anything regarding...
View Articlepractising problems under various paradigms
Is there any online judge where there is a clear classification of the problems according to various paradigms to be used to solve the problem for practising those paradigms? Or anything close to the...
View ArticleNeed program to print all prime numbers?
how to write a programme in C language print all the prime numbers 2-1000??????
View ArticleBINTOUR March 2014
please someone explain the question bintour in march challenge 2014 or it's test cases
View ArticleLarge 2d matrix
I want to create a 2d matrix of size 3000000 X 3000000.When I am declaring the array in java I am getting NZEC error and SIGSEV in C++. How to declare a array of large size in Java and C++.
View ArticleFeature for testing others solution
In current contest, SSTORY and STREETTA were rejudged and it came to be handy as almost half the solution found to be incorrect. Fortunately the admins were able to find that the test cases were weak....
View ArticleGetting WA
please tell me why i am getting WA while it is giving the correct output for every test case i have checked....help me i am new here.. here is the question : http://www.codechef.com/problems/COINS here...
View Articlethis is in reference to the question Granama Recipies...
how this code will work while(str1[j]!='\0') { count1[(str1[j]-'a')]++; j++; }
View Articlegetting NZEC java !!
Here is my code :import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class Main { static final char[] spoon = {'p','o','o','n'}; static final char[]...
View Articlewhich C++ version am i using?
Hi! I'm new here and am a beginner as well... I'm not sure which version of c++ i use.. Could someone guide me please? Which compiler should I use for the same?
View Articleregarding while loop
{ int i; while(i=10) { printf("%d",i); i=i+1; } return 0; } //explain how o/p obtained //
View Article