結果

問題 No.2236 Lights Out On Simple Graph
ユーザー hiromi_ayasehiromi_ayase
提出日時 2023-03-03 23:31:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,496 ms / 4,000 ms
コード長 4,776 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 89,604 KB
実行使用メモリ 223,392 KB
最終ジャッジ日時 2024-09-18 00:32:59
合計ジャッジ時間 53,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
51,296 KB
testcase_01 AC 81 ms
50,904 KB
testcase_02 AC 80 ms
50,924 KB
testcase_03 AC 1,669 ms
208,072 KB
testcase_04 AC 2,055 ms
216,512 KB
testcase_05 AC 78 ms
51,220 KB
testcase_06 AC 1,954 ms
221,892 KB
testcase_07 AC 1,678 ms
223,140 KB
testcase_08 AC 80 ms
51,156 KB
testcase_09 AC 80 ms
51,364 KB
testcase_10 AC 626 ms
80,784 KB
testcase_11 AC 205 ms
58,008 KB
testcase_12 AC 692 ms
94,132 KB
testcase_13 AC 191 ms
55,316 KB
testcase_14 AC 1,111 ms
141,640 KB
testcase_15 AC 165 ms
57,240 KB
testcase_16 AC 202 ms
60,020 KB
testcase_17 AC 270 ms
62,360 KB
testcase_18 AC 99 ms
52,036 KB
testcase_19 AC 295 ms
63,932 KB
testcase_20 AC 923 ms
131,116 KB
testcase_21 AC 268 ms
64,000 KB
testcase_22 AC 901 ms
175,948 KB
testcase_23 AC 1,634 ms
221,716 KB
testcase_24 AC 877 ms
130,212 KB
testcase_25 AC 458 ms
80,416 KB
testcase_26 AC 1,420 ms
176,008 KB
testcase_27 AC 1,181 ms
136,620 KB
testcase_28 AC 1,011 ms
162,312 KB
testcase_29 AC 286 ms
63,844 KB
testcase_30 AC 1,539 ms
193,544 KB
testcase_31 AC 1,491 ms
183,468 KB
testcase_32 AC 1,684 ms
222,132 KB
testcase_33 AC 1,700 ms
208,360 KB
testcase_34 AC 1,568 ms
203,060 KB
testcase_35 AC 1,049 ms
136,504 KB
testcase_36 AC 552 ms
83,352 KB
testcase_37 AC 1,045 ms
182,264 KB
testcase_38 AC 543 ms
84,556 KB
testcase_39 AC 445 ms
78,944 KB
testcase_40 AC 811 ms
87,660 KB
testcase_41 AC 302 ms
63,392 KB
testcase_42 AC 552 ms
106,328 KB
testcase_43 AC 165 ms
55,796 KB
testcase_44 AC 1,031 ms
111,916 KB
testcase_45 AC 2,496 ms
223,392 KB
testcase_46 AC 1,129 ms
141,920 KB
testcase_47 AC 1,816 ms
207,172 KB
testcase_48 AC 1,658 ms
124,068 KB
testcase_49 AC 1,680 ms
223,100 KB
testcase_50 AC 147 ms
54,816 KB
testcase_51 AC 534 ms
86,012 KB
testcase_52 AC 150 ms
55,164 KB
testcase_53 AC 82 ms
50,860 KB
testcase_54 AC 802 ms
116,684 KB
testcase_55 AC 485 ms
83,148 KB
testcase_56 AC 549 ms
83,648 KB
testcase_57 AC 677 ms
100,368 KB
testcase_58 AC 577 ms
77,036 KB
testcase_59 AC 518 ms
79,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

@SuppressWarnings("unused")
public class Main {

  private static void solve() {
    int n = ni();
    int m = ni();
    int[] a = new int[m];
    int[] b = new int[m];
    for (int i = 0; i < m; i++) {
      a[i] = ni() - 1;
      b[i] = ni() - 1;
    }
    int[] c = na(n);

    // long[] dp = func(a, b, c, 0, m);

    // int ret = Integer.MAX_VALUE / 2;
    // for (int i = 0; i < dp.length; i ++) {
    //   if (dp[i] == 0) {
    //     ret = Math.min(ret, Integer.bitCount(i));
    //   }
    // }
    // System.out.println(ret == Integer.MAX_VALUE / 2 ? -1 : ret);


    long[] dp1 = func(a, b, c, 0, m / 2);
    long[] dp2 = func(a, b, c, m / 2, m);

    Map<Long, Integer> map = new HashMap<>();
    for (int i = 0; i < dp2.length; i ++) {
      long state = dp2[i];
      int cnt = Integer.bitCount(i);

      int min = map.getOrDefault(state, Integer.MAX_VALUE / 2);
      map.put(state, Math.min(min, cnt));
    }

    int m1 = m / 2;

    int ret = Integer.MAX_VALUE;

    long init = 0;
    for (int i = 0; i < n; i++) {
      if (c[i] == 1) {
        init |= 1L << i;
      }
    }

    for (int i = 0; i < 1 << m1; i ++) {
      long k = dp1[i] ^ init;

      ret = Math.min(ret, Integer.bitCount(i) + map.getOrDefault(k, Integer.MAX_VALUE / 2));
    }

    System.out.println(ret >= Integer.MAX_VALUE / 2 ? -1 : ret);
  }


  private static long[] func(int[] a, int[] b, int[] c, int from, int to) {
    int m = to - from;
    long[] dp = new long[1 << m];

    long init = 0;
    int n = c.length;
    for (int i = 0; i < n; i++) {
      if (c[i] == 1) {
        init |= 1L << i;
      }
    }

    for (int i = 0; i < (1 << m); i++) {
      long v = init;

      for (int j = 0; j < m; j++) {
        if ((i >> j & 1) == 1) {
          v ^= 1L << a[j + from];
          v ^= 1L << b[j + from];
        }
      }
      dp[i] = v;
    }

    return dp;
  }

  public static int[][] packU(int n, int[] from, int[] to) {
    return packU(n, from, to, from.length);
  }

  public static int[][] packU(int n, int[] from, int[] to, int sup) {
    int[][] g = new int[n][];
    int[] p = new int[n];
    for (int i = 0; i < sup; i++)
      p[from[i]]++;
    for (int i = 0; i < sup; i++)
      p[to[i]]++;
    for (int i = 0; i < n; i++)
      g[i] = new int[p[i]];
    for (int i = 0; i < sup; i++) {
      g[from[i]][--p[from[i]]] = to[i];
      g[to[i]][--p[to[i]]] = from[i];
    }
    return g;
  }

  public static void main(String[] args) {
    new Thread(null, new Runnable() {
      @Override
      public void run() {
        long start = System.currentTimeMillis();
        String debug = args.length > 0 ? args[0] : null;
        if (debug != null) {
          try {
            is = java.nio.file.Files.newInputStream(java.nio.file.Paths.get(debug));
          } catch (Exception e) {
            throw new RuntimeException(e);
          }
        }
        reader = new java.io.BufferedReader(new java.io.InputStreamReader(is), 32768);
        solve();
        out.flush();
        tr((System.currentTimeMillis() - start) + "ms");
      }
    }, "", 64000000).start();
  }

  private static java.io.InputStream is = System.in;
  private static java.io.PrintWriter out = new java.io.PrintWriter(System.out);
  private static java.util.StringTokenizer tokenizer = null;
  private static java.io.BufferedReader reader;

  public static String next() {
    while (tokenizer == null || !tokenizer.hasMoreTokens()) {
      try {
        tokenizer = new java.util.StringTokenizer(reader.readLine());
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }
    return tokenizer.nextToken();
  }

  private static double nd() {
    return Double.parseDouble(next());
  }

  private static long nl() {
    return Long.parseLong(next());
  }

  private static int[] na(int n) {
    int[] a = new int[n];
    for (int i = 0; i < n; i++)
      a[i] = ni();
    return a;
  }

  private static char[] ns() {
    return next().toCharArray();
  }

  private static long[] nal(int n) {
    long[] a = new long[n];
    for (int i = 0; i < n; i++)
      a[i] = nl();
    return a;
  }

  private static int[][] ntable(int n, int m) {
    int[][] table = new int[n][m];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[i][j] = ni();
      }
    }
    return table;
  }

  private static int[][] nlist(int n, int m) {
    int[][] table = new int[m][n];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[j][i] = ni();
      }
    }
    return table;
  }

  private static int ni() {
    return Integer.parseInt(next());
  }

  private static void tr(Object... o) {
    if (is != System.in)
      System.out.println(java.util.Arrays.deepToString(o));
  }
}
0