結果

問題 No.2236 Lights Out On Simple Graph
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-27 00:26:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 853 ms / 4,000 ms
コード長 1,251 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 216,216 KB
実行使用メモリ 85,316 KB
最終ジャッジ日時 2024-06-07 19:47:50
合計ジャッジ時間 27,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 701 ms
85,312 KB
testcase_04 AC 481 ms
76,908 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 510 ms
85,196 KB
testcase_07 AC 785 ms
85,164 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 153 ms
15,676 KB
testcase_11 AC 72 ms
5,456 KB
testcase_12 AC 276 ms
23,700 KB
testcase_13 AC 20 ms
5,844 KB
testcase_14 AC 585 ms
44,180 KB
testcase_15 AC 17 ms
5,584 KB
testcase_16 AC 30 ms
7,888 KB
testcase_17 AC 87 ms
9,424 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 70 ms
12,624 KB
testcase_20 AC 339 ms
44,240 KB
testcase_21 AC 67 ms
12,492 KB
testcase_22 AC 657 ms
85,108 KB
testcase_23 AC 853 ms
85,200 KB
testcase_24 AC 560 ms
44,204 KB
testcase_25 AC 137 ms
21,712 KB
testcase_26 AC 736 ms
85,112 KB
testcase_27 AC 376 ms
44,240 KB
testcase_28 AC 701 ms
77,096 KB
testcase_29 AC 66 ms
12,620 KB
testcase_30 AC 662 ms
85,252 KB
testcase_31 AC 661 ms
85,092 KB
testcase_32 AC 707 ms
85,316 KB
testcase_33 AC 715 ms
85,272 KB
testcase_34 AC 594 ms
85,088 KB
testcase_35 AC 800 ms
52,340 KB
testcase_36 AC 563 ms
23,632 KB
testcase_37 AC 753 ms
85,204 KB
testcase_38 AC 673 ms
23,816 KB
testcase_39 AC 529 ms
20,304 KB
testcase_40 AC 303 ms
19,704 KB
testcase_41 AC 68 ms
8,528 KB
testcase_42 AC 321 ms
40,140 KB
testcase_43 AC 16 ms
5,376 KB
testcase_44 AC 656 ms
36,024 KB
testcase_45 AC 741 ms
85,248 KB
testcase_46 AC 587 ms
52,320 KB
testcase_47 AC 788 ms
85,200 KB
testcase_48 AC 565 ms
36,052 KB
testcase_49 AC 780 ms
85,160 KB
testcase_50 AC 13 ms
5,376 KB
testcase_51 AC 178 ms
23,760 KB
testcase_52 AC 14 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 525 ms
27,756 KB
testcase_55 AC 580 ms
23,808 KB
testcase_56 AC 583 ms
23,852 KB
testcase_57 AC 807 ms
27,944 KB
testcase_58 AC 447 ms
20,688 KB
testcase_59 AC 493 ms
20,688 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;
    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