結果

問題 No.2236 Lights Out On Simple Graph
ユーザー TsReaperTsReaper
提出日時 2023-03-03 22:23:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,102 ms / 4,000 ms
コード長 1,245 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 177,248 KB
実行使用メモリ 47,612 KB
最終ジャッジ日時 2024-09-17 23:26:18
合計ジャッジ時間 25,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 871 ms
47,476 KB
testcase_04 AC 491 ms
25,320 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 674 ms
47,360 KB
testcase_07 AC 455 ms
14,240 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 142 ms
14,240 KB
testcase_11 AC 29 ms
6,940 KB
testcase_12 AC 195 ms
14,244 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 520 ms
25,320 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 16 ms
6,944 KB
testcase_17 AC 53 ms
8,828 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 33 ms
6,944 KB
testcase_20 AC 352 ms
25,444 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 874 ms
47,480 KB
testcase_23 AC 906 ms
47,400 KB
testcase_24 AC 549 ms
25,248 KB
testcase_25 AC 72 ms
8,828 KB
testcase_26 AC 870 ms
47,528 KB
testcase_27 AC 385 ms
25,316 KB
testcase_28 AC 550 ms
25,448 KB
testcase_29 AC 35 ms
6,940 KB
testcase_30 AC 908 ms
47,480 KB
testcase_31 AC 914 ms
47,608 KB
testcase_32 AC 909 ms
47,480 KB
testcase_33 AC 910 ms
47,604 KB
testcase_34 AC 892 ms
47,480 KB
testcase_35 AC 1,102 ms
47,612 KB
testcase_36 AC 727 ms
47,484 KB
testcase_37 AC 932 ms
47,476 KB
testcase_38 AC 355 ms
14,236 KB
testcase_39 AC 230 ms
6,944 KB
testcase_40 AC 223 ms
14,112 KB
testcase_41 AC 33 ms
6,940 KB
testcase_42 AC 137 ms
8,744 KB
testcase_43 AC 10 ms
6,940 KB
testcase_44 AC 677 ms
25,272 KB
testcase_45 AC 688 ms
25,320 KB
testcase_46 AC 618 ms
25,192 KB
testcase_47 AC 581 ms
25,320 KB
testcase_48 AC 875 ms
47,352 KB
testcase_49 AC 454 ms
14,112 KB
testcase_50 AC 7 ms
6,944 KB
testcase_51 AC 74 ms
6,944 KB
testcase_52 AC 8 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 343 ms
14,348 KB
testcase_55 AC 291 ms
8,828 KB
testcase_56 AC 272 ms
6,944 KB
testcase_57 AC 331 ms
8,956 KB
testcase_58 AC 265 ms
6,944 KB
testcase_59 AC 252 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MAXN 40
#define MAXM 40
using namespace std;

int n, m, ans, A[MAXM][2];

int main() {
    scanf("%d%d", &n, &m);
    for (int i = 0; i < m; i++) {
        scanf("%d%d", &A[i][0], &A[i][1]);
        A[i][0]--; A[i][1]--;
    }
    long long goal = 0;
    for (int i = 0; i < n; i++) {
        long long x; scanf("%lld", &x);
        goal |= x << i;
    }

    unordered_map<long long, int> mp;
    int half = m / 2;
    for (int i = 0; i < (1 << half); i++) {
        long long msk = 0;
        int cnt = 0;
        for (int j = 0; j < half; j++) if (i >> j & 1) {
            msk ^= 1LL << A[j][0];
            msk ^= 1LL << A[j][1];
            cnt++;
        }
        if (mp.count(msk) == 0) mp[msk] = cnt;
        else mp[msk] = min(mp[msk], cnt);
    }

    ans = m + 1;
    for (int i = 0; i < (1 << (m - half)); i++) {
        long long msk = 0;
        int cnt = 0;
        for (int j = 0; j < m - half; j++) if (i >> j & 1) {
            msk ^= 1LL << A[j + half][0];
            msk ^= 1LL << A[j + half][1];
            cnt++;
        }
        if (mp.count(goal ^ msk)) ans = min(ans, cnt + mp[goal ^ msk]);
    }

    if (ans == m + 1) printf("-1\n");
    else printf("%d\n", ans);
    return 0;
}
0