Это похоже на проблему N Queen, где мы должны поместить N queen в матрицу N * N так, чтобы никакие 2 ферзя не находились в том же столбце или той же строке.
import java.util.Vector;
public class maxSum {
private static int getMaxSum(int row, int[] col, int n, int[][] mat, int sum,
Vector<Integer> ans) {
if(row >= n) {
System.out.println(ans+"->"+sum);
return sum;
}
int max = Integer.MIN_VALUE;
for(int i=0;i<n;i++) {
if(col[i]==1)
continue;
col[i] = 1;
ans.add(mat[row][i]);
max = Math.max(getMaxSum(row+1,col,n,mat,sum+mat[row][i],ans), max);
ans.remove(ans.size()-1);
col[i] = 0;
}
return max;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int[][] mat = {{2,5,7,6},{8,5,11,9},{7,3,1,2},{8,7,9,7}};
int n = 4;
int col[] = {0,0,0,0};
Vector<Integer> ans = new Vector<Integer>();
System.out.println(getMaxSum(0,col,n,mat,0,ans));
}
}