結果
問題 | No.460 裏表ちわーわ |
ユーザー | Grenache |
提出日時 | 2016-12-11 16:22:40 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 2,843 bytes |
コンパイル時間 | 4,539 ms |
コンパイル使用メモリ | 79,648 KB |
実行使用メモリ | 42,144 KB |
最終ジャッジ日時 | 2024-05-06 18:34:25 |
合計ジャッジ時間 | 9,652 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
41,660 KB |
testcase_01 | AC | 121 ms
40,244 KB |
testcase_02 | AC | 137 ms
41,492 KB |
testcase_03 | AC | 129 ms
40,892 KB |
testcase_04 | AC | 129 ms
41,248 KB |
testcase_05 | AC | 145 ms
41,932 KB |
testcase_06 | AC | 156 ms
41,524 KB |
testcase_07 | AC | 146 ms
41,616 KB |
testcase_08 | AC | 153 ms
41,836 KB |
testcase_09 | AC | 141 ms
41,288 KB |
testcase_10 | AC | 158 ms
41,508 KB |
testcase_11 | AC | 149 ms
41,904 KB |
testcase_12 | AC | 147 ms
41,616 KB |
testcase_13 | AC | 153 ms
41,784 KB |
testcase_14 | AC | 155 ms
42,072 KB |
testcase_15 | AC | 159 ms
41,656 KB |
testcase_16 | AC | 148 ms
41,684 KB |
testcase_17 | AC | 155 ms
41,784 KB |
testcase_18 | AC | 156 ms
41,396 KB |
testcase_19 | AC | 154 ms
42,144 KB |
testcase_20 | AC | 145 ms
41,716 KB |
testcase_21 | AC | 149 ms
41,940 KB |
testcase_22 | AC | 150 ms
41,692 KB |
testcase_23 | AC | 153 ms
42,064 KB |
testcase_24 | AC | 146 ms
41,556 KB |
testcase_25 | AC | 131 ms
41,324 KB |
testcase_26 | AC | 132 ms
41,384 KB |
testcase_27 | AC | 121 ms
40,684 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; out: 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); if (!hm.containsKey(line)) { continue out; } 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); } } }