結果

問題 No.2236 Lights Out On Simple Graph
ユーザー hiromi_ayasehiromi_ayase
提出日時 2023-03-03 23:31:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,524 ms / 4,000 ms
コード長 4,776 bytes
コンパイル時間 3,766 ms
コンパイル使用メモリ 88,392 KB
実行使用メモリ 226,112 KB
最終ジャッジ日時 2023-10-18 03:44:04
合計ジャッジ時間 56,842 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
54,352 KB
testcase_01 AC 81 ms
54,364 KB
testcase_02 AC 80 ms
54,352 KB
testcase_03 AC 1,720 ms
211,444 KB
testcase_04 AC 2,031 ms
219,860 KB
testcase_05 AC 83 ms
54,352 KB
testcase_06 AC 1,990 ms
224,996 KB
testcase_07 AC 1,711 ms
224,120 KB
testcase_08 AC 80 ms
54,452 KB
testcase_09 AC 80 ms
54,340 KB
testcase_10 AC 630 ms
83,204 KB
testcase_11 AC 203 ms
61,260 KB
testcase_12 AC 666 ms
97,716 KB
testcase_13 AC 177 ms
58,604 KB
testcase_14 AC 1,137 ms
145,108 KB
testcase_15 AC 159 ms
60,172 KB
testcase_16 AC 201 ms
63,188 KB
testcase_17 AC 273 ms
65,636 KB
testcase_18 AC 99 ms
55,104 KB
testcase_19 AC 275 ms
67,076 KB
testcase_20 AC 942 ms
134,476 KB
testcase_21 AC 273 ms
67,200 KB
testcase_22 AC 887 ms
179,424 KB
testcase_23 AC 1,647 ms
224,964 KB
testcase_24 AC 893 ms
133,460 KB
testcase_25 AC 463 ms
83,692 KB
testcase_26 AC 1,401 ms
179,596 KB
testcase_27 AC 1,186 ms
138,172 KB
testcase_28 AC 1,006 ms
165,496 KB
testcase_29 AC 287 ms
67,400 KB
testcase_30 AC 1,540 ms
197,048 KB
testcase_31 AC 1,504 ms
184,396 KB
testcase_32 AC 1,692 ms
224,220 KB
testcase_33 AC 1,684 ms
211,280 KB
testcase_34 AC 1,590 ms
206,428 KB
testcase_35 AC 1,080 ms
142,040 KB
testcase_36 AC 567 ms
86,736 KB
testcase_37 AC 1,067 ms
181,560 KB
testcase_38 AC 554 ms
87,892 KB
testcase_39 AC 446 ms
82,032 KB
testcase_40 AC 833 ms
91,492 KB
testcase_41 AC 299 ms
66,472 KB
testcase_42 AC 555 ms
109,692 KB
testcase_43 AC 164 ms
58,648 KB
testcase_44 AC 1,037 ms
115,304 KB
testcase_45 AC 2,524 ms
224,760 KB
testcase_46 AC 1,132 ms
145,436 KB
testcase_47 AC 1,790 ms
208,392 KB
testcase_48 AC 1,632 ms
127,380 KB
testcase_49 AC 1,679 ms
226,112 KB
testcase_50 AC 154 ms
57,820 KB
testcase_51 AC 533 ms
89,200 KB
testcase_52 AC 161 ms
57,920 KB
testcase_53 AC 81 ms
54,340 KB
testcase_54 AC 817 ms
119,936 KB
testcase_55 AC 484 ms
86,476 KB
testcase_56 AC 555 ms
87,064 KB
testcase_57 AC 677 ms
103,352 KB
testcase_58 AC 580 ms
80,148 KB
testcase_59 AC 521 ms
83,264 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