Search found 1 match

by yure
Sun Jul 29, 2007 4:59 pm
Forum: Volume 105 (10500-10599)
Topic: 10593 - Kites
Replies: 18
Views: 8916

I keep getting TLE and dont really understand what I do wrong, if anyone can help it would be great.

#include <iostream>
#include <vector>
using namespace std;
bool square(vector<vector<bool> >& V, int i, int j, int size){
for(int i1=0; i1<size; ++i1)
for(int j1=0; j1<size; ++j1)
if (not V[i+i1 ...

Go to advanced search