結果

問題 No.460 裏表ちわーわ
ユーザー 37zigen37zigen
提出日時 2016-12-12 03:06:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,180 bytes
コンパイル時間 5,217 ms
コンパイル使用メモリ 87,908 KB
実行使用メモリ 66,732 KB
最終ジャッジ日時 2023-08-19 18:53:06
合計ジャッジ時間 11,311 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
56,060 KB
testcase_01 AC 119 ms
56,280 KB
testcase_02 AC 142 ms
56,320 KB
testcase_03 AC 119 ms
56,240 KB
testcase_04 AC 118 ms
55,828 KB
testcase_05 AC 128 ms
55,996 KB
testcase_06 AC 128 ms
56,240 KB
testcase_07 AC 127 ms
55,852 KB
testcase_08 AC 148 ms
56,348 KB
testcase_09 AC 126 ms
55,956 KB
testcase_10 AC 202 ms
59,212 KB
testcase_11 AC 127 ms
56,172 KB
testcase_12 AC 127 ms
55,992 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;


public class Q460 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int M = sc.nextInt();
		int N = sc.nextInt();
		int[][] a = new int[M][N];
		for (int i = 0; i < M; ++i) {
			for (int j = 0; j < N; ++j) {
				a[i][j] = sc.nextInt();
			}
		}

		int[][] mx = new int[M * N][M * N];
		int[] v = new int[M * N];
		for (int i = 0; i < M; ++i) {
			for (int j = 0; j < N; ++j) {
				v[i * N + j] = a[i][j];
			}
		}

		for (int i = 0; i < M; ++i) {
			for (int j = 0; j < N; ++j) {
				for (int dx = -1; dx <= 1; ++dx) {
					for (int dy = -1; dy <= 1; ++dy) {
						int nx = j + dx;
						int ny = i + dy;
						if (nx < 0 || ny < 0 || nx >= N || ny >= M)
							continue;
						mx[i * N + j][ny * N + nx] = 1;
					}
				}
			}
		}

		for (int i = 0; i < M * N; ++i) {
			int j = i;
			while (j < M * N && mx[j][i] == 0) {
				++j;
			}
			if (j == M * N)
				continue;
			if (i != j) {
				for (int k = 0; k < N * M; ++k) {
					int d = mx[i][k];
					mx[i][k] = mx[j][k];
					mx[j][k] = d;
				}
				int d = v[i];
				v[i] = v[j];
				v[j] = d;

			}
			for (int k = 0; k < M * N; ++k) {
				if (k == i)
					continue;
				if (mx[k][i] == 1) {
					for (int l = 0; l < M * N; ++l) {
						mx[k][l] = (mx[k][l] + mx[i][l]) % 2;
					}
					v[k] = (v[k] + v[i]) % 2;
				}
			}
		}
		ArrayList<Integer>[] to = new ArrayList[N * M];
		for (int i = 0; i < N * M; ++i) {
			to[i] = new ArrayList<>();
		}
		int c = 0;
		int c1 = 0;
		ArrayList<Integer> pending = new ArrayList<>();
		for (int i = N * M - 1; i >= 0; --i) {
			for (int k = 0; k < N * M; ++k) {
				if (mx[i][k] == 1) {
					to[k].add(i);
				}
			}
			if (v[i] == 1) {
				if (mx[i][i] != 1) {
					System.out.println("Impossible");
					return;
				} else {
					ArrayDeque<Integer> tmp = new ArrayDeque<>();
					for (int k = 0; k < N * M; ++k) {
						if (mx[i][k] == 1) {
							tmp.add(k);
						}
					}
					if (tmp.size() == 1) {
						++c;
						for (int k = 0; k <= i; ++k) {
							if (mx[k][i] == 1) {
								v[k] = v[k] ^ 1;
							}
						}
					} else {
						++c1;
						pending.addAll(tmp);
					}
				}
			}
		}
		int ans = Integer.MAX_VALUE;
		Collections.sort(pending);
		for (int i = 0; i < pending.size(); ++i) {
			while (i + 1 < pending.size() && pending.get(i) == pending.get(i + 1)) {
				pending.remove(i + 1);
			}
		}
		
		for (int i = 0; i < (1 << pending.size()); ++i) {
			int[] nv = Arrays.copyOf(v, v.length);
			int nc = c1;
			int used = 0;
			for (int k = 0; k < pending.size(); ++k) {
				if ((i & (1 << k)) > 0) {
					++used;
					for (int t : to[pending.get(k)]) {
						if (nv[t] == 1) {
							--nc;
						} else {
							++nc;
						}
						nv[t] ^= 1;
					}
				}
			}
			if (nc > 0)
				continue;
			ans = Math.min(ans, c + used);
		}
		System.out.println(ans);
	}

	static void show(int[][] mx, int[] v, int M, int N) {
		for (int i = 0; i < M * N; ++i) {
			for (int j = 0; j < M * N; ++j) {
				System.out.print(mx[i][j] + " ");
			}
			System.out.print(v[i]);
			System.out.println();
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0