結果

問題 No.1345 Beautiful BINGO
ユーザー 小野寺健小野寺健
提出日時 2021-05-28 10:09:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,761 ms / 2,000 ms
コード長 2,248 bytes
コンパイル時間 4,794 ms
コンパイル使用メモリ 78,956 KB
実行使用メモリ 66,788 KB
最終ジャッジ日時 2024-11-07 01:06:34
合計ジャッジ時間 46,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,632 KB
testcase_01 AC 139 ms
41,400 KB
testcase_02 AC 139 ms
41,236 KB
testcase_03 AC 137 ms
41,364 KB
testcase_04 AC 138 ms
41,620 KB
testcase_05 AC 155 ms
41,644 KB
testcase_06 AC 135 ms
41,428 KB
testcase_07 AC 186 ms
42,720 KB
testcase_08 AC 135 ms
41,120 KB
testcase_09 AC 135 ms
41,104 KB
testcase_10 AC 143 ms
41,432 KB
testcase_11 AC 156 ms
41,796 KB
testcase_12 AC 137 ms
41,584 KB
testcase_13 AC 185 ms
42,712 KB
testcase_14 AC 145 ms
41,256 KB
testcase_15 AC 137 ms
41,548 KB
testcase_16 AC 143 ms
41,464 KB
testcase_17 AC 142 ms
41,316 KB
testcase_18 AC 137 ms
41,248 KB
testcase_19 AC 141 ms
41,612 KB
testcase_20 AC 138 ms
41,080 KB
testcase_21 AC 138 ms
41,604 KB
testcase_22 AC 390 ms
47,408 KB
testcase_23 AC 1,698 ms
58,212 KB
testcase_24 AC 1,291 ms
52,660 KB
testcase_25 AC 280 ms
46,360 KB
testcase_26 AC 744 ms
52,152 KB
testcase_27 AC 1,617 ms
51,076 KB
testcase_28 AC 271 ms
46,328 KB
testcase_29 AC 866 ms
55,964 KB
testcase_30 AC 526 ms
53,460 KB
testcase_31 AC 342 ms
47,360 KB
testcase_32 AC 197 ms
44,112 KB
testcase_33 AC 1,706 ms
56,836 KB
testcase_34 AC 237 ms
45,704 KB
testcase_35 AC 244 ms
45,860 KB
testcase_36 AC 1,521 ms
54,920 KB
testcase_37 AC 243 ms
46,320 KB
testcase_38 AC 801 ms
53,744 KB
testcase_39 AC 1,761 ms
54,796 KB
testcase_40 AC 1,141 ms
52,316 KB
testcase_41 AC 1,347 ms
55,624 KB
testcase_42 AC 124 ms
40,248 KB
testcase_43 AC 137 ms
41,044 KB
testcase_44 AC 138 ms
41,604 KB
testcase_45 AC 137 ms
41,580 KB
testcase_46 AC 135 ms
41,312 KB
testcase_47 AC 135 ms
41,208 KB
testcase_48 AC 137 ms
41,528 KB
testcase_49 AC 135 ms
41,452 KB
testcase_50 AC 136 ms
41,128 KB
testcase_51 AC 125 ms
40,060 KB
testcase_52 AC 1,680 ms
55,080 KB
testcase_53 AC 1,579 ms
66,788 KB
testcase_54 AC 1,615 ms
55,436 KB
testcase_55 AC 1,601 ms
55,360 KB
testcase_56 AC 1,679 ms
54,696 KB
testcase_57 AC 1,683 ms
55,260 KB
testcase_58 AC 1,583 ms
55,072 KB
testcase_59 AC 1,708 ms
53,016 KB
testcase_60 AC 1,561 ms
54,788 KB
testcase_61 AC 1,513 ms
52,548 KB
testcase_62 AC 1,549 ms
50,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class No1345 {
	
	private static class Row {
		public List<Integer> row;
		public List<Integer> diag;
		public int cnt;
		public int[] col;
		public int size;
		public Row(int n) {
			row = new ArrayList<Integer>();
			diag = new ArrayList<Integer>();
			cnt = 0;
			col = new int[n];
			size = 0;
		}
		public void SetCol(int[][] A) {
			for (int i=0; i < col.length; i++) {
				for (int j : row) {
					if (!ContainDiag(j, i)) {
						col[i] += A[j][i];
					}
				}
			}
			Arrays.sort(col);
			for (int i=0; i < col.length-1; i++) {
				col[i+1] += col[i];
			}
		}
		public void SetDiag(int row, int col) {
			int i = (row << 16) + col;
			if (!diag.contains(i)) {
				diag.add(i);
			}
		}
		public boolean ContainDiag(int row, int col) {
			int i = (row << 16) + col;
			return diag.contains(i);
		}
	}
	
	public static void main(String[] args) {
		
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int[] RowSum = new int[N];
		int[][] A = new int[N][N];
		for (int i=0; i < N; i++) {
			int sum = 0;
			for (int j=0; j < N; j++) {
				int a = scan.nextInt();
				sum += a;
				A[i][j] = a;
			}
			RowSum[i] = sum;
		}
		scan.close();
		int ans = Integer.MAX_VALUE;
		for (int i=0; i < 1 << (N+2); i++) {
			Row row = new Row(N);
			for (int j=0; j < N; j++) {
				if ((i & (1 << j)) != 0) {
					row.cnt += RowSum[j];
					row.size++;
				} else {
					row.row.add(j);
				}
			}
			if ((i & (3 << N)) != 0) {
				for (int j = 0; j < N; j++) {
					if (row.row.contains(j)) {
						if ((i & (1 << N)) != 0) {
							row.cnt += A[j][j];
							row.SetDiag(j, j);
						}
						if ((i & (1 << (N+1))) != 0) {
							if (!row.ContainDiag(j, N-1-j)) {
								row.cnt += A[j][N-1-j];
								row.SetDiag(j, N-1-j);
							}
						}
					}
				}
				if ((i & (1 << N)) != 0) {
					row.size++;
				}
				if ((i & (1 << (N+1))) != 0) {
					row.size++;
				}
			}
			row.SetCol(A);
			if (row.size == M) {
				ans = Math.min(ans, row.cnt);
			} else if (row.size < M && M - row.size <= N) {
				ans = Math.min(ans, row.cnt + row.col[M-row.size-1]);
			}
		}
		System.out.println(ans);
	}
}
0