Search found 1 match

by caojun
Mon Dec 11, 2006 9:44 am
Forum: Volume 100 (10000-10099)
Topic: 10000 - Longest Paths
Replies: 160
Views: 56559

10000 WA. Memory Limit Exceeded!

I've tried every means,and I still got "Memory Limit Exceeded",can anybody help me,please? Thank you.

#include <stdio.h>
#include <stdlib.h>

struct Edge {
unsigned short int num;
struct Edge *next;
};

struct IN {
unsigned short int n;
int start;
struct Edge **edges;
};

struct node ...

Go to advanced search