Search found 2 matches

by n_arun89
Wed Jun 11, 2008 9:21 am
Forum: Volume 7 (700-799)
Topic: 750 - 8 Queens Chess Problem
Replies: 78
Views: 38999

Re: 750 - 8 Queens Chess Problem

thanks
removed after AC :D
by n_arun89
Wed Dec 12, 2007 12:42 am
Forum: Volume 100 (10000-10099)
Topic: 10048 - Audiophobia
Replies: 27
Views: 14865

10048 Audiophobia w/a why? any critical cases....

here is my code can anyone find the problem.....???????



#include<iostream>
using namespace std;
long long cost[1000][1000];
int q[1000][2];
int n,e,que;

void floyd(int con){ //floyd algo
int i,j,k;
for(k=1;k<=n;k++){
for(j=1;j<=n;j++){
for(i=1;i<=n;i++){

cost[i][j]=min(cost[i][j],max ...

Go to advanced search