Re: [algogeeks] Re: help me debug this

2011-01-17 Thread juver++
Redirect your output to the file, and you'll see that at the end of line you 
have extra blank.
You need to write something like this (in all sections):
for(i=j;i<(j+2*C-1);i++) {
 if (i != j) printf(" ");
 printf("%d",s[i]); // note there is no space
}

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: help me debug this

2011-01-17 Thread ankit sablok
i improved upon my code but still i get a presentation error dunno wts the
judge judging it shows me the correct way when i output test cases on my
compiler but on the judge it says wrong answer or presentation error

#include
#include
#include
#include
#include

using namespace std;

int prime(int N,int C);// the function used to print the cut primes

int main()
{
int N,C;
vectorv;// used for holding the test cases

while(scanf("%d %d",&N,&C)==2)
{
  v.push_back(N);v.push_back(C);
}

int i;// counter

for(i=0;ip;
vectors;

p.clear();s.clear();

int i,j,k;// counters

for(i=0;i<=N;i++)
p.push_back(i);

for(i=2;is.size())
   {
 for(i=0;i wrote:

> Got AC with your code with small corrections to the output -
> don't use getchar();
> output specification says:  Each line of output should be followed by a
> blank line (so, add blank line to match the sample output)
> you print a whitespace after each number, so the last character in your
> line is a whitespace (but it is wrong, so take a care of this)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.