[info] http://acm.uva.es/p/v1/108.html 내림피아드 프로젝트의 첫번째 문제 O(N^4) 알고리즘 [test.in] 4 0 -2 -7 0 9 2 -6 2 -4 1 -4 1 -1 8 0 -2 [n01_zzun.cpp] /** Max-Sum Subrectangle Search zzun http://zzun.net hello82@unitel.co.kr **/ #include #include #include #include int array_size; char** num_array; bool read_input(char* filename) { ifstream fin; int buf; fin.open( filename ); fin >> array_size; // take the arra..