An interesting Problem
Posted by
TheBeet 26 Jun 2004 09:09
type
node=record
d:integer;
n:longint;
end;
var
dl:array [1..100000] of node;
l,le:array [1..1000] of longint;
able:array [1..1000] of integer;
i,n,m,f,t,k:longint;
This program I got "Memory Limit Exceeded 15 1153 КБ"
Then I change the node
node=record
d:word;
n:longint;
end;
I got AC.