ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1280. Topological Sorting

An interesting Problem
Послано TheBeet 26 июн 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.
Re: An interesting Problem
Послано Khlyzov Andrew 21 июл 2004 14:55
What is the difference between using word and integer?
Each of them is 2 bytes. I changed integer to word myself and I got AC too.
Re: An interesting Problem
Послано Evil Cheater 21 июл 2004 20:06
In some compilers integer and longint have the same size. If you want a 2 byte integer I think you can use smallint.