結果

問題 No.2236 Lights Out On Simple Graph
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-12-25 17:10:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 723 ms / 4,000 ms
コード長 1,261 bytes
コンパイル時間 2,839 ms
コンパイル使用メモリ 215,936 KB
実行使用メモリ 63,868 KB
最終ジャッジ日時 2024-09-27 14:32:11
合計ジャッジ時間 20,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 607 ms
63,664 KB
testcase_04 AC 402 ms
55,552 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 483 ms
63,692 KB
testcase_07 AC 562 ms
63,676 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 86 ms
12,724 KB
testcase_11 AC 32 ms
6,944 KB
testcase_12 AC 145 ms
18,428 KB
testcase_13 AC 13 ms
6,944 KB
testcase_14 AC 341 ms
33,412 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 44 ms
8,016 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 42 ms
9,856 KB
testcase_20 AC 264 ms
33,432 KB
testcase_21 AC 42 ms
9,728 KB
testcase_22 AC 680 ms
63,716 KB
testcase_23 AC 639 ms
63,800 KB
testcase_24 AC 344 ms
33,332 KB
testcase_25 AC 84 ms
16,168 KB
testcase_26 AC 630 ms
63,684 KB
testcase_27 AC 251 ms
33,388 KB
testcase_28 AC 534 ms
55,552 KB
testcase_29 AC 40 ms
9,724 KB
testcase_30 AC 620 ms
63,556 KB
testcase_31 AC 645 ms
63,868 KB
testcase_32 AC 716 ms
63,624 KB
testcase_33 AC 713 ms
63,728 KB
testcase_34 AC 659 ms
63,768 KB
testcase_35 AC 432 ms
41,664 KB
testcase_36 AC 271 ms
22,284 KB
testcase_37 AC 662 ms
63,760 KB
testcase_38 AC 251 ms
22,388 KB
testcase_39 AC 227 ms
20,100 KB
testcase_40 AC 165 ms
16,756 KB
testcase_41 AC 34 ms
6,972 KB
testcase_42 AC 227 ms
29,424 KB
testcase_43 AC 11 ms
6,944 KB
testcase_44 AC 380 ms
30,684 KB
testcase_45 AC 723 ms
63,720 KB
testcase_46 AC 519 ms
41,544 KB
testcase_47 AC 644 ms
63,784 KB
testcase_48 AC 357 ms
30,504 KB
testcase_49 AC 663 ms
63,732 KB
testcase_50 AC 7 ms
6,940 KB
testcase_51 AC 114 ms
18,200 KB
testcase_52 AC 8 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 306 ms
22,344 KB
testcase_55 AC 268 ms
22,268 KB
testcase_56 AC 260 ms
22,320 KB
testcase_57 AC 282 ms
25,172 KB
testcase_58 AC 237 ms
20,376 KB
testcase_59 AC 251 ms
21,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    ll N, M, m, a, b, vtx, ans=1e9, c=0, mx;
    cin >> N >> M;
    m = M/2;
    vector<pair<ll, ll>> e(M);
    for (int i=0; i<M; i++){
        cin >> a >> b; a--; b--;
        e[i] = {a, b};
    }

    for (int i=0; i<N; i++){
        cin >> a;
        c |= a*(1LL<<i);
    }

    vector<pair<ll, ll>> v;
    unordered_map<ll, ll> mp;

    mx = 1<<m;
    for (int i=0; i<mx; i++){
        vtx = 0;
        for (int j=0; j<m; j++){
            if (i & (1<<j)){
                tie(a, b) = e[j];
                vtx ^= (1LL<<a); vtx ^= (1LL<<b);
            }
        }
        v.push_back({vtx, __builtin_popcount(i)});
    }

    mx = 1<<(M-m);
    for (int i=0; i<mx; i++){
        vtx = 0;
        for (int j=0; j<(M-m); j++){
            if (i & (1<<j)){
                tie(a, b) = e[m+j];
                vtx ^= (1LL<<a); vtx ^= (1LL<<b);
            }   
        }
        if (mp.count(vtx)) mp[vtx] = min(mp[vtx], (ll)__builtin_popcount(i));
        else mp[vtx] = __builtin_popcount(i);
    }

    for (auto [vtx, cnt] : v){
        if (mp.count(vtx ^ c)) ans = min(ans, cnt+mp[vtx ^ c]);
    }

    if (ans == 1e9) ans = -1;
    cout << ans << endl;

    return 0;
}

0