There is a contest! | В настоящий момент идёт турнир. Некоторая информация и функции сервера недоступны до его окончания.
|
|
imesecan | May.11.2013 at 02:49:08 PM | |
0 | Post is deleted
|
imesecan | Sep.04.2013 at 09:54:29 AM | |
1 | Usually 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];
|
|