結果
問題 | No.460 裏表ちわーわ |
ユーザー | Grenache |
提出日時 | 2016-12-11 16:16:16 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,778 bytes |
コンパイル時間 | 4,571 ms |
コンパイル使用メモリ | 79,884 KB |
実行使用メモリ | 54,420 KB |
最終ジャッジ日時 | 2024-11-29 03:33:27 |
合計ジャッジ時間 | 9,171 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
54,056 KB |
testcase_01 | AC | 141 ms
53,984 KB |
testcase_02 | AC | 145 ms
53,864 KB |
testcase_03 | AC | 137 ms
53,928 KB |
testcase_04 | AC | 138 ms
54,160 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 150 ms
54,000 KB |
testcase_09 | AC | 139 ms
53,916 KB |
testcase_10 | AC | 149 ms
54,072 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 151 ms
54,128 KB |
testcase_14 | AC | 152 ms
54,156 KB |
testcase_15 | AC | 149 ms
53,844 KB |
testcase_16 | RE | - |
testcase_17 | AC | 151 ms
54,060 KB |
testcase_18 | AC | 152 ms
53,856 KB |
testcase_19 | AC | 150 ms
54,052 KB |
testcase_20 | RE | - |
testcase_21 | AC | 149 ms
54,188 KB |
testcase_22 | AC | 151 ms
53,956 KB |
testcase_23 | AC | 150 ms
54,120 KB |
testcase_24 | AC | 151 ms
54,128 KB |
testcase_25 | AC | 136 ms
54,100 KB |
testcase_26 | AC | 142 ms
53,956 KB |
testcase_27 | AC | 137 ms
53,740 KB |
ソースコード
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(); } } Map<Long, Integer> hm = new HashMap<>(); Map<Long, Integer> hm2 = new HashMap<>(); { int[] mask = new int[n]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (Math.abs(i - j) <= 1) { mask[i] |= 0x1 << (n - 1 - j); } } } for (int i = 0; i < 0x1 << n; i++) { long ans = 0; for (int j = 0; j < n; j++) { if ((i & 0x1 << j) != 0) { ans ^= mask[j]; } } if (hm.containsKey(ans)) { if (hm.get(ans) > Integer.bitCount(i)) { hm.put(ans, Integer.bitCount(i)); hm2.put(ans, i); } } else { hm.put(ans, Integer.bitCount(i)); hm2.put(ans, i); } } } 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][j] = enc(tmp); } } long st = enc(a); int min = Integer.MAX_VALUE; for (int i = 0; i < 0x1 << n; i++) { long ans = st; for (int j = 0; j < n; j++) { if ((i & 0x1 << j) != 0) { ans ^= conv[0][j]; } } int cnt = Integer.bitCount(i); for (int j = 1; j < m; j++) { long line = getLine(ans, j - 1, m, n); cnt += hm.get(line); int mask = hm2.get(line); for (int k = 0; k < n; k++) { if ((mask & 0x1 << k) != 0) { ans ^= conv[j][k]; } } } if (getLine(ans, m - 1, m, n) == 0) { min = Math.min(min, cnt); } } if (min == Integer.MAX_VALUE) { pr.println("Impossible"); } else { pr.println(min); } } 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++) { tmp <<= 8; for (int j = 0; j < n; j++) { if (a[i][j] == 1) { tmp |= 0x1 << n - 1 - j; } } } return tmp; } // k行目を取り出す private static long getLine(long a, int k, int m, int n) { return (a >> 8 * (m - 1 - k)) & 0xff; } // --------------------------------------------------- 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); } } }