結果

問題 No.2236 Lights Out On Simple Graph
ユーザー momoyuumomoyuu
提出日時 2023-10-24 15:43:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,047 ms / 4,000 ms
コード長 1,566 bytes
コンパイル時間 1,349 ms
コンパイル使用メモリ 116,704 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-09-23 08:09:12
合計ジャッジ時間 27,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 684 ms
68,992 KB
testcase_04 AC 803 ms
68,864 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 892 ms
68,864 KB
testcase_07 AC 667 ms
68,992 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 146 ms
11,648 KB
testcase_11 AC 53 ms
6,940 KB
testcase_12 AC 250 ms
11,392 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 510 ms
36,096 KB
testcase_15 AC 15 ms
6,940 KB
testcase_16 AC 30 ms
7,424 KB
testcase_17 AC 65 ms
6,944 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 64 ms
11,520 KB
testcase_20 AC 335 ms
36,224 KB
testcase_21 AC 68 ms
11,520 KB
testcase_22 AC 588 ms
68,992 KB
testcase_23 AC 696 ms
68,864 KB
testcase_24 AC 672 ms
68,864 KB
testcase_25 AC 140 ms
19,712 KB
testcase_26 AC 759 ms
68,992 KB
testcase_27 AC 290 ms
19,840 KB
testcase_28 AC 637 ms
68,864 KB
testcase_29 AC 67 ms
11,520 KB
testcase_30 AC 677 ms
68,992 KB
testcase_31 AC 743 ms
68,864 KB
testcase_32 AC 580 ms
68,864 KB
testcase_33 AC 677 ms
68,864 KB
testcase_34 AC 576 ms
68,864 KB
testcase_35 AC 813 ms
36,096 KB
testcase_36 AC 996 ms
68,864 KB
testcase_37 AC 741 ms
68,736 KB
testcase_38 AC 576 ms
7,296 KB
testcase_39 AC 612 ms
6,944 KB
testcase_40 AC 371 ms
19,712 KB
testcase_41 AC 67 ms
11,520 KB
testcase_42 AC 246 ms
11,520 KB
testcase_43 AC 17 ms
6,940 KB
testcase_44 AC 612 ms
19,584 KB
testcase_45 AC 729 ms
68,992 KB
testcase_46 AC 679 ms
68,992 KB
testcase_47 AC 537 ms
36,096 KB
testcase_48 AC 662 ms
68,864 KB
testcase_49 AC 664 ms
68,864 KB
testcase_50 AC 12 ms
6,944 KB
testcase_51 AC 155 ms
19,712 KB
testcase_52 AC 13 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 770 ms
68,864 KB
testcase_55 AC 707 ms
11,520 KB
testcase_56 AC 487 ms
7,424 KB
testcase_57 AC 1,047 ms
19,712 KB
testcase_58 AC 598 ms
7,424 KB
testcase_59 AC 764 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<stack>
#include<vector>
#include<set>
#include<string>
#include<cstdint>
#include<map>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int ans = 1e9;
    int n,m;
    cin>>n>>m;
    vector<pair<int,int>> a,b;
    for(int i = 0;i<m;i++){
        int u,v;
        cin>>u>>v;
        u--;v--;
        pair<int,int> now = make_pair(u,v);
        if(i&1) b.push_back(now);
        else a.push_back(now);
    }
    map<ll,int> memo;
    ll mask = 0;
    for(int i = 0;i<n;i++){
        int c;
        cin>>c;
        if(c) mask |= 1ll << i;
    }

    int use = a.size();
    for(int i = 0;i<1<<use;i++){
        ll now = 0;
        for(int j = 0;j<use;j++){
            if(~i>>j&1) continue;
            now ^= 1ll << a[j].first;
            now ^= 1ll << a[j].second;
        }
        if(memo.find(now)==memo.end()) memo[now] = __builtin_popcountll(i);
        else  memo[now] = min(memo[now],__builtin_popcountll(i));
        if(now==mask) ans = min(ans,__builtin_popcountll(i));
    }
    use = b.size();
    for(int i = 0;i<1<<use;i++){
        ll now = 0;
        for(int j = 0;j<use;j++){
            if(~i>>j&1) continue;
            now ^= 1ll << b[j].first;
            now ^= 1ll << b[j].second;
        }
        ll want = now ^ mask;
        if(want==0) ans = min(ans,__builtin_popcountll(i));
        if(memo.find(want)!=memo.end()) ans = min(ans,__builtin_popcountll(i)+memo[want]);
    }
    if(ans==1e9) ans = -1;
    cout<<ans<<endl;
}
0