#include #include #include /* srand, rand */ using namespace std; int randrange(int low,int high) { return rand()%(high-low+1)+low; } int main() { int D,N,M,B; ifstream fin; ofstream fout; fin.open("subsetselection.in"); fout.open("subsetselection.out"); fin>>N>>M>>B; int** in = new int*[N]; int sum[N][2]; int* arr = new int[N]; // for (int i=0; i>in[i][j]; } } // int getRow[2]={1,4}; // int getRowLength = (sizeof(getRow)/sizeof(*getRow)); // int sumCol[M]; // int total = 0; // for (int j=0; j