結果

問題 No.2236 Lights Out On Simple Graph
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-02-27 00:55:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 874 ms / 4,000 ms
コード長 1,563 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 114,520 KB
実行使用メモリ 85,204 KB
最終ジャッジ日時 2024-09-16 20:10:24
合計ジャッジ時間 27,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 732 ms
85,196 KB
testcase_04 AC 499 ms
77,008 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 536 ms
85,076 KB
testcase_07 AC 792 ms
85,072 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 155 ms
15,572 KB
testcase_11 AC 74 ms
5,456 KB
testcase_12 AC 283 ms
23,756 KB
testcase_13 AC 20 ms
5,840 KB
testcase_14 AC 606 ms
44,244 KB
testcase_15 AC 17 ms
5,460 KB
testcase_16 AC 30 ms
7,888 KB
testcase_17 AC 87 ms
9,428 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 71 ms
12,500 KB
testcase_20 AC 351 ms
44,240 KB
testcase_21 AC 68 ms
12,428 KB
testcase_22 AC 684 ms
85,204 KB
testcase_23 AC 874 ms
85,196 KB
testcase_24 AC 575 ms
44,244 KB
testcase_25 AC 134 ms
21,712 KB
testcase_26 AC 744 ms
85,204 KB
testcase_27 AC 383 ms
44,236 KB
testcase_28 AC 718 ms
77,004 KB
testcase_29 AC 65 ms
12,500 KB
testcase_30 AC 697 ms
85,200 KB
testcase_31 AC 711 ms
85,200 KB
testcase_32 AC 736 ms
85,204 KB
testcase_33 AC 742 ms
85,200 KB
testcase_34 AC 616 ms
85,104 KB
testcase_35 AC 854 ms
52,560 KB
testcase_36 AC 574 ms
23,760 KB
testcase_37 AC 800 ms
85,200 KB
testcase_38 AC 710 ms
23,756 KB
testcase_39 AC 537 ms
20,120 KB
testcase_40 AC 308 ms
19,664 KB
testcase_41 AC 70 ms
8,396 KB
testcase_42 AC 323 ms
40,144 KB
testcase_43 AC 17 ms
5,376 KB
testcase_44 AC 687 ms
36,052 KB
testcase_45 AC 781 ms
85,200 KB
testcase_46 AC 643 ms
52,436 KB
testcase_47 AC 820 ms
85,196 KB
testcase_48 AC 601 ms
36,172 KB
testcase_49 AC 813 ms
85,200 KB
testcase_50 AC 13 ms
5,376 KB
testcase_51 AC 181 ms
23,760 KB
testcase_52 AC 14 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 551 ms
27,852 KB
testcase_55 AC 609 ms
23,760 KB
testcase_56 AC 608 ms
23,756 KB
testcase_57 AC 829 ms
27,856 KB
testcase_58 AC 480 ms
20,688 KB
testcase_59 AC 512 ms
20,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll N, M, m, a, b, vtx, ans=1e9, c=0, mx;
    cin >> N >> M;

    assert(2 <= N && N <= 40);
    assert(1 <= M && M <= min(N*(N-1)/2, 40LL));

    m = M/2;
    set<pair<ll, ll>> st;
    vector<pair<ll, ll>> e(M);
    for (int i=0; i<M; i++){
        cin >> a >> b; a--; b--;
        e[i] = {a, b};
    
        assert(!st.count({a, b}));
        assert(a != b);
        st.insert({a, b});
    }

    for (int i=0; i<N; i++){
        cin >> a;
        assert(a == 0 || a == 1);
        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