Search found 3 matches

by arkidd
Wed Oct 22, 2014 7:51 pm
Forum: Volume 112 (11200-11299)
Topic: 11266 - Equations
Replies: 15
Views: 8253

Re: 11266 - Equations

Thanks for the testcases :D . My code went out of array range last time, now I've handled it and got AC.
Thanks a bunch!
by arkidd
Tue Oct 21, 2014 5:21 pm
Forum: Volume 112 (11200-11299)
Topic: 11266 - Equations
Replies: 15
Views: 8253

Re: 11266 - Equations

My code passes all the testcases you guys gave, but still WA :(

Can someone help provide more testcases or find out what's wrong with my code? :-?

Thanks!

Code: Select all

Code removed after AC
by arkidd
Wed Aug 21, 2013 1:57 pm
Forum: Volume 110 (11000-11099)
Topic: 11094 - Continents
Replies: 43
Views: 28218

Re: 11094 - Continents

i've passed all the testcases here but still got WA. :(
can somebody help me pls?

thanks


#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;

int m, n, x, y, i, j, k;
int parent[10005];
char s[105][105];

int sum[10005];

int ans;

int dirx[] = {0,0 ...

Go to advanced search