結果

問題 No.2236 Lights Out On Simple Graph
ユーザー chro_96chro_96
提出日時 2023-03-03 22:25:12
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 551 ms / 4,000 ms
コード長 1,835 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 34,644 KB
最終ジャッジ日時 2024-09-17 23:28:27
合計ジャッジ時間 16,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
18,056 KB
testcase_01 AC 5 ms
18,244 KB
testcase_02 AC 6 ms
18,200 KB
testcase_03 AC 411 ms
33,388 KB
testcase_04 AC 289 ms
22,804 KB
testcase_05 AC 6 ms
18,100 KB
testcase_06 AC 376 ms
27,276 KB
testcase_07 AC 472 ms
34,344 KB
testcase_08 AC 6 ms
18,156 KB
testcase_09 AC 5 ms
18,188 KB
testcase_10 AC 99 ms
22,052 KB
testcase_11 AC 65 ms
19,964 KB
testcase_12 AC 150 ms
22,124 KB
testcase_13 AC 16 ms
18,656 KB
testcase_14 AC 304 ms
26,336 KB
testcase_15 AC 13 ms
18,284 KB
testcase_16 AC 19 ms
18,432 KB
testcase_17 AC 50 ms
20,180 KB
testcase_18 AC 7 ms
18,208 KB
testcase_19 AC 36 ms
19,156 KB
testcase_20 AC 199 ms
26,308 KB
testcase_21 AC 34 ms
18,936 KB
testcase_22 AC 412 ms
34,352 KB
testcase_23 AC 430 ms
27,624 KB
testcase_24 AC 307 ms
24,760 KB
testcase_25 AC 71 ms
19,980 KB
testcase_26 AC 409 ms
34,404 KB
testcase_27 AC 200 ms
26,296 KB
testcase_28 AC 309 ms
26,148 KB
testcase_29 AC 34 ms
18,964 KB
testcase_30 AC 408 ms
34,356 KB
testcase_31 AC 418 ms
34,288 KB
testcase_32 AC 407 ms
34,176 KB
testcase_33 AC 424 ms
33,700 KB
testcase_34 AC 410 ms
34,344 KB
testcase_35 AC 434 ms
34,420 KB
testcase_36 AC 530 ms
32,560 KB
testcase_37 AC 428 ms
34,332 KB
testcase_38 AC 515 ms
34,528 KB
testcase_39 AC 551 ms
34,644 KB
testcase_40 AC 235 ms
25,940 KB
testcase_41 AC 36 ms
18,940 KB
testcase_42 AC 150 ms
22,216 KB
testcase_43 AC 15 ms
18,448 KB
testcase_44 AC 463 ms
34,416 KB
testcase_45 AC 426 ms
34,464 KB
testcase_46 AC 411 ms
34,400 KB
testcase_47 AC 420 ms
34,416 KB
testcase_48 AC 420 ms
34,340 KB
testcase_49 AC 413 ms
34,276 KB
testcase_50 AC 12 ms
18,164 KB
testcase_51 AC 97 ms
22,060 KB
testcase_52 AC 12 ms
18,376 KB
testcase_53 AC 6 ms
17,952 KB
testcase_54 AC 308 ms
26,332 KB
testcase_55 AC 447 ms
34,292 KB
testcase_56 AC 445 ms
34,496 KB
testcase_57 AC 529 ms
34,432 KB
testcase_58 AC 447 ms
34,640 KB
testcase_59 AC 457 ms
34,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int cmp_ll_alt (const void *a, const void *b) {
  long long *a_ = (long long *)a;
  long long *b_ = (long long *)b;
  
  if (a_[0] < b_[0]) {
    return -1;
  }
  
  if (a_[0] > b_[0]) {
    return 1;
  }
  
  if (a_[1] < b_[1]) {
    return 1;
  }
  
  if (a_[1] > b_[1]) {
    return -1;
  }
  
  return 0;
}

int main () {
  int n = 0;
  int m = 0;
  long long a[40] = {};
  long long b[40] = {};
  long long c = 0LL;
  
  int res = 0;
  
  int ans = 0;
  
  long long cbit = 0LL;
  long long half[1048576][2] = {};
  
  res = scanf("%d", &n);
  res = scanf("%d", &m);
  for (int i = 0; i < m; i++) {
    res = scanf("%lld", a+i);
    res = scanf("%lld", b+i);
    a[i] -= 1LL;
    b[i] -= 1LL;
  }
  for (int i = 0; i < n; i++) {
    res = scanf("%lld", &c);
    cbit |= (c<<((long long)i));
  }
  
  ans = m+1;
  
  for (int i = 0; i < (1<<(m/2)); i++) {
    for (int j = 0; j < m/2; j++) {
      if ((i&(1<<j)) > 0) {
        half[i][1] += 1LL;
        half[i][0] ^= (1LL<<a[j]);
        half[i][0] ^= (1LL<<b[j]);
      }
    }
  }
  
  qsort(half, (1<<(m/2)), sizeof(long long)*2, cmp_ll_alt);
  
  for (int i = 0; i < (1<<(m-m/2)); i++) {
    long long hbit = 0LL;
    int cnt = 0;
    int idx[2] = { 0, (1<<m/2) };
    for (int j = 0; j < m-m/2; j++) {
      if ((i&(1<<j)) > 0) {
        cnt++;
        hbit ^= (1LL<<a[j+m/2]);
        hbit ^= (1LL<<b[j+m/2]);
      }
    }
    while (idx[1] - idx[0] > 1) {
      int nxt = (idx[0]+idx[1])/2;
      if (half[nxt][0] <= (cbit^hbit)) {
        idx[0] = nxt;
      } else {
        idx[1] = nxt;
      }
    }
    if (half[idx[0]][0] == (cbit^hbit) && ans > cnt+((int)half[idx[0]][1])) {
      ans = cnt+((int)half[idx[0]][1]);
    }
  }
  
  if (ans > m) {
    printf("-1\n");
    return 0;
  }
  
  printf("%d\n", ans);
  return 0;
}
0