結果

問題 No.460 裏表ちわーわ
ユーザー GrenacheGrenache
提出日時 2016-12-11 01:17:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,694 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 80,012 KB
実行使用メモリ 465,768 KB
最終ジャッジ日時 2024-11-29 02:49:55
合計ジャッジ時間 73,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
59,676 KB
testcase_01 AC 418 ms
405,176 KB
testcase_02 AC 1,019 ms
125,868 KB
testcase_03 AC 118 ms
379,228 KB
testcase_04 AC 105 ms
59,968 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 272 ms
68,700 KB
testcase_09 AC 155 ms
380,808 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,558 ms
152,824 KB
testcase_25 AC 119 ms
54,020 KB
testcase_26 AC 119 ms
53,996 KB
testcase_27 AC 124 ms
373,028 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(st);
		for (int i = 0; i < 64; i++) {
			if (hs.contains(goal)) {
				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