|
|
back to boardcan i take [1..125001] of int64? Posted by VALERO 17 Oct 2005 20:49 please, tell me, what type of array i must take? i took MLE on this : array[1..125000] of int64; Don't use int64, longword is just enough (-) Re: Don't use int64, longword is just enough (-) But I get memlimit on 7th test , but used longword Re: Don't use int64, longword is just enough (-) Unfortunatelly you can't conserve all elements simultanionsly. Try to use ideas of heap sort or use priority_queue<int> if you are C++ programmer :-). Re: can i take [1..125001] of int64? Posted by cutedog 17 Jul 2008 14:26 sorry you can't. |
|
|