HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Forums > Discussion of problems > topic:


Problem "Matrix Multiplication"

There is a contest!

В настоящий момент идёт турнир. Некоторая информация и функции сервера недоступны до его окончания.

imesecanMay.11.2013 at 02:49:08 PM
0Post is deleted

imesecanSep.04.2013 at 09:54:29 AM
1Usually this error is because of memory allocation problem. You are having variable memory allocation.
int a,x,b;
cin>>m>>n>>k;
int array1[m][n];

I think you should have fixed memory allocation with the given max values.
int array1[100][100];


www.contester.ru