結果

問題 No.2236 Lights Out On Simple Graph
ユーザー RubikunRubikun
提出日時 2023-03-03 21:46:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,082 ms / 4,000 ms
コード長 1,570 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 212,372 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-09-17 22:41:09
合計ジャッジ時間 24,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 667 ms
68,992 KB
testcase_04 AC 342 ms
36,224 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 543 ms
68,864 KB
testcase_07 AC 434 ms
19,712 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 158 ms
19,712 KB
testcase_11 AC 57 ms
6,944 KB
testcase_12 AC 188 ms
19,840 KB
testcase_13 AC 18 ms
6,940 KB
testcase_14 AC 383 ms
36,224 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 86 ms
11,648 KB
testcase_18 AC 2 ms
6,948 KB
testcase_19 AC 39 ms
7,552 KB
testcase_20 AC 315 ms
36,224 KB
testcase_21 AC 41 ms
7,424 KB
testcase_22 AC 642 ms
68,864 KB
testcase_23 AC 767 ms
68,864 KB
testcase_24 AC 439 ms
36,096 KB
testcase_25 AC 79 ms
11,520 KB
testcase_26 AC 620 ms
68,864 KB
testcase_27 AC 341 ms
36,224 KB
testcase_28 AC 377 ms
36,224 KB
testcase_29 AC 41 ms
7,552 KB
testcase_30 AC 648 ms
68,992 KB
testcase_31 AC 691 ms
68,864 KB
testcase_32 AC 545 ms
68,864 KB
testcase_33 AC 677 ms
68,864 KB
testcase_34 AC 668 ms
68,864 KB
testcase_35 AC 801 ms
68,992 KB
testcase_36 AC 1,082 ms
68,864 KB
testcase_37 AC 784 ms
68,992 KB
testcase_38 AC 905 ms
19,840 KB
testcase_39 AC 538 ms
6,940 KB
testcase_40 AC 326 ms
19,840 KB
testcase_41 AC 42 ms
7,552 KB
testcase_42 AC 156 ms
11,520 KB
testcase_43 AC 14 ms
6,944 KB
testcase_44 AC 737 ms
36,224 KB
testcase_45 AC 649 ms
36,096 KB
testcase_46 AC 475 ms
36,096 KB
testcase_47 AC 513 ms
36,096 KB
testcase_48 AC 692 ms
68,992 KB
testcase_49 AC 448 ms
19,840 KB
testcase_50 AC 11 ms
6,940 KB
testcase_51 AC 115 ms
7,424 KB
testcase_52 AC 12 ms
6,940 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 358 ms
19,712 KB
testcase_55 AC 631 ms
11,520 KB
testcase_56 AC 438 ms
7,424 KB
testcase_57 AC 739 ms
11,520 KB
testcase_58 AC 461 ms
7,424 KB
testcase_59 AC 502 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=1000000007,MAX=300005,INF=1<<30;

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N,M;cin>>N>>M;
    vector<pair<int,int>> E(M);
    for(int i=0;i<M;i++){
        int a,b;cin>>a>>b;a--;b--;
        E[i]=mp(a,b);
    }
    
    ll tar=0;
    int ans=INF;
    
    for(int i=0;i<N;i++){
        int c;cin>>c;
        if(c) tar|=(1LL<<i);
    }
    
    map<ll,int> MA;
    int K=M/2;
    for(int bi=0;bi<(1<<K);bi++){
        ll now=0;
        for(int i=0;i<K;i++){
            if(bi&(1<<i)){
                now^=(1LL<<E[i].fi);
                now^=(1LL<<E[i].se);
            }
        }
        if(!MA.count(now)) MA[now]=__builtin_popcount(bi);
        else chmin(MA[now],__builtin_popcount(bi));
    }
    
    for(int bi=0;bi<(1<<(M-K));bi++){
        ll now=tar;
        for(int i=0;i<M-K;i++){
            if(bi&(1<<i)){
                now^=(1LL<<E[K+i].fi);
                now^=(1LL<<E[K+i].se);
            }
        }
        if(MA.count(now)) chmin(ans,MA[now]+__builtin_popcount(bi));
        
    }
    
    if(ans==INF) cout<<-1<<endl;
    else cout<<ans<<endl;
}
0