Search found 1 match

by m7moud.hussein
Wed Oct 07, 2015 1:04 am
Forum: Volume 8 (800-899)
Topic: 871 - Counting Cells in a Blob
Replies: 27
Views: 20318

Re: 871 - Counting Cells in a Blob

I get WA and i have tried udebug tesecases but still get WA help please

#include <bits/stdc++.h>
using namespace std;
int TC, n;
char a[25], b;
short g[25][25];
bool visited[25][25];
short dx[8] = { 1, 1, 0, -1, -1, -1, 0, 1 };
short dy[8] = { 0, 1, 1, 1, 0, -1, -1, -1 };
int ans, sum, m;
void ...

Go to advanced search