結果

問題 No.460 裏表ちわーわ
ユーザー GrenacheGrenache
提出日時 2016-12-11 01:20:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,701 bytes
コンパイル時間 4,260 ms
コンパイル使用メモリ 79,132 KB
実行使用メモリ 347,924 KB
最終ジャッジ日時 2024-11-29 02:53:29
合計ジャッジ時間 76,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
46,424 KB
testcase_01 AC 470 ms
347,924 KB
testcase_02 AC 1,206 ms
110,584 KB
testcase_03 AC 141 ms
332,032 KB
testcase_04 AC 143 ms
46,576 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 341 ms
57,448 KB
testcase_09 AC 200 ms
335,416 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,676 ms
138,956 KB
testcase_25 AC 138 ms
41,812 KB
testcase_26 AC 137 ms
41,188 KB
testcase_27 AC 143 ms
337,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder460 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		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();
			}
		}

		long st = enc(a);

		long[] conv = new long[m * n];
		int[][] tmp = new int[m][n];
		for (int i = 0; i < m; i++) {
			for (int j = 0; j < n; j++) {
				for (int ii = 0; ii < m; ii++) {
					for (int jj = 0; jj < n; jj++) {
						if (Math.abs(ii - i) <= 1 && Math.abs(jj - j) <= 1) {
							tmp[ii][jj] = 1;
						} else {
							tmp[ii][jj] = 0;
						}
					}
				}
				conv[i * n + j] = enc(tmp);
			}
		}

		int[][] ans = new int[m][n];
		long goal = enc(ans);

		Set<Long> hs = new HashSet<>();
		hs.add(goal);
		for (int i = 0; i < m * n * 2; i++) {
			if (hs.contains(st)) {
				pr.println(i);
				return;
			}

			Set<Long> hstmp = new HashSet<>();

			for (long e : hs) {
				for (long c : conv) {
					hstmp.add(e ^ c);
				}
			}
			hs = hstmp;
		}

		pr.println("Impossible");
	}

	private static long enc(int[][] a) {
		int m = a.length;
		int n = a[0].length;

		long tmp = 0;
		for (int i = 0; i < m; i++) {
			for (int j = 0; j < n; j++) {
				tmp <<= 1;
				if (a[i][j] == 1) {
					tmp |= 0x1;
				}
			}
		}

		return tmp;
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0