結果

問題 No.2236 Lights Out On Simple Graph
ユーザー Nzt3Nzt3
提出日時 2023-03-05 03:03:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,524 ms / 4,000 ms
コード長 1,235 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 215,200 KB
実行使用メモリ 47,496 KB
最終ジャッジ日時 2024-09-18 01:29:15
合計ジャッジ時間 50,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1,399 ms
47,240 KB
testcase_04 AC 773 ms
47,244 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1,050 ms
47,244 KB
testcase_07 AC 913 ms
14,128 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 830 ms
47,368 KB
testcase_11 AC 238 ms
5,376 KB
testcase_12 AC 851 ms
47,376 KB
testcase_13 AC 764 ms
47,376 KB
testcase_14 AC 983 ms
47,244 KB
testcase_15 AC 778 ms
47,368 KB
testcase_16 AC 758 ms
47,376 KB
testcase_17 AC 468 ms
25,052 KB
testcase_18 AC 626 ms
47,244 KB
testcase_19 AC 707 ms
47,372 KB
testcase_20 AC 891 ms
47,368 KB
testcase_21 AC 777 ms
47,372 KB
testcase_22 AC 1,410 ms
47,372 KB
testcase_23 AC 1,383 ms
47,248 KB
testcase_24 AC 1,054 ms
47,372 KB
testcase_25 AC 768 ms
47,244 KB
testcase_26 AC 1,346 ms
47,372 KB
testcase_27 AC 867 ms
47,244 KB
testcase_28 AC 1,106 ms
47,496 KB
testcase_29 AC 781 ms
47,244 KB
testcase_30 AC 1,369 ms
47,372 KB
testcase_31 AC 1,424 ms
47,244 KB
testcase_32 AC 1,418 ms
47,372 KB
testcase_33 AC 1,407 ms
47,372 KB
testcase_34 AC 1,419 ms
47,372 KB
testcase_35 AC 1,524 ms
47,372 KB
testcase_36 AC 1,073 ms
47,372 KB
testcase_37 AC 1,377 ms
47,244 KB
testcase_38 AC 718 ms
14,004 KB
testcase_39 AC 462 ms
5,376 KB
testcase_40 AC 662 ms
25,080 KB
testcase_41 AC 463 ms
14,132 KB
testcase_42 AC 504 ms
25,212 KB
testcase_43 AC 309 ms
8,592 KB
testcase_44 AC 1,156 ms
25,084 KB
testcase_45 AC 1,127 ms
25,084 KB
testcase_46 AC 1,120 ms
25,084 KB
testcase_47 AC 1,049 ms
25,212 KB
testcase_48 AC 1,353 ms
47,244 KB
testcase_49 AC 900 ms
14,000 KB
testcase_50 AC 226 ms
5,376 KB
testcase_51 AC 418 ms
14,132 KB
testcase_52 AC 267 ms
8,720 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 AC 732 ms
25,216 KB
testcase_55 AC 631 ms
8,720 KB
testcase_56 AC 576 ms
5,792 KB
testcase_57 AC 718 ms
8,512 KB
testcase_58 AC 542 ms
5,920 KB
testcase_59 AC 536 ms
5,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  vector<array<int,2>>E1,E2;
  for(int i=0;i<M;i++){
    int a,b;
    cin>>a>>b;
    if(E1.size()>=20)E2.push_back({a-1,b-1});
    else E1.push_back({a-1,b-1});
  }
  vector<int>C(N);
  for(int &i:C)cin>>i;
  unordered_map<long long,int>ans;
  for(int i=0;i<1<<E1.size();i++){
    vector<int>c2=C;
    for(int j=0;j<E1.size();j++){
      if(i>>j&1){
        c2[E1[j][0]]=1-c2[E1[j][0]];
        c2[E1[j][1]]=1-c2[E1[j][1]];
      }
    }
    long long t=0;
    for(int j=0;j<N;j++){
      if(c2[j])t|=(1ll<<j);
    }
    if(ans.find(t)==ans.end()){
      ans[t]=__popcount(i);
    }else{
      ans[t]=min(ans[t],__builtin_popcount(i));
    }
  }
  int out=1e9;
  if(ans.find(0)!=ans.end())out=ans[0];
  for(int i=0;i<1<<E2.size();i++){
    vector<int>c2(N);
    for(int j=0;j<E2.size();j++){
      if(i>>j&1){
        c2[E2[j][0]]=1-c2[E2[j][0]];
        c2[E2[j][1]]=1-c2[E2[j][1]];
      }
    }
    long long t=0;
    for(int j=0;j<N;j++){
      if(c2[j])t|=(1ll<<j);
    }
    if(ans.find(t)!=ans.end()){
      out=min(out,ans[t]+__builtin_popcount(i));
    }
  }
  cout<<(out==1e9?-1:out)<<'\n';
}
0