Search found 1 match

by FilipeNevola
Thu Sep 17, 2009 11:50 pm
Forum: Volume 113 (11300-11399)
Topic: 11377 - Airport Setup
Replies: 24
Views: 16000

Re: 11377 - Airport Setup

I receive WA, I'm using Dijkstra and after I verify who was visited and no have airport.

The code is here:

#include <stdio.h>
#include <string.h>
#define MAXV 2020
const int INF = 0x3F3F3F3F;

int g[MAXV][MAXV];//mat
char air[MAXV];
int pred[MAXV];
int passou[MAXV];
int custo[MAXV];
int n;

int ...

Go to advanced search