結果

問題 No.2236 Lights Out On Simple Graph
ユーザー 沙耶花沙耶花
提出日時 2023-03-03 21:46:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,311 ms / 4,000 ms
コード長 1,048 bytes
コンパイル時間 3,973 ms
コンパイル使用メモリ 272,976 KB
実行使用メモリ 134,656 KB
最終ジャッジ日時 2024-09-17 22:42:45
合計ジャッジ時間 48,717 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 1,210 ms
134,528 KB
testcase_04 AC 648 ms
101,760 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 811 ms
134,528 KB
testcase_07 AC 1,002 ms
85,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 678 ms
71,040 KB
testcase_11 AC 285 ms
5,376 KB
testcase_12 AC 698 ms
73,088 KB
testcase_13 AC 692 ms
69,248 KB
testcase_14 AC 877 ms
101,632 KB
testcase_15 AC 606 ms
68,992 KB
testcase_16 AC 584 ms
69,120 KB
testcase_17 AC 531 ms
37,248 KB
testcase_18 AC 624 ms
68,992 KB
testcase_19 AC 626 ms
69,504 KB
testcase_20 AC 786 ms
85,248 KB
testcase_21 AC 670 ms
69,504 KB
testcase_22 AC 1,116 ms
134,656 KB
testcase_23 AC 1,260 ms
134,528 KB
testcase_24 AC 972 ms
101,760 KB
testcase_25 AC 619 ms
71,040 KB
testcase_26 AC 1,165 ms
134,528 KB
testcase_27 AC 780 ms
85,504 KB
testcase_28 AC 944 ms
101,760 KB
testcase_29 AC 697 ms
69,504 KB
testcase_30 AC 1,118 ms
134,528 KB
testcase_31 AC 1,145 ms
134,528 KB
testcase_32 AC 1,051 ms
134,528 KB
testcase_33 AC 1,160 ms
134,656 KB
testcase_34 AC 1,064 ms
134,528 KB
testcase_35 AC 1,229 ms
101,632 KB
testcase_36 AC 1,100 ms
73,088 KB
testcase_37 AC 1,311 ms
134,528 KB
testcase_38 AC 828 ms
23,936 KB
testcase_39 AC 621 ms
5,376 KB
testcase_40 AC 586 ms
40,448 KB
testcase_41 AC 476 ms
20,224 KB
testcase_42 AC 572 ms
44,416 KB
testcase_43 AC 374 ms
11,648 KB
testcase_44 AC 997 ms
52,480 KB
testcase_45 AC 1,149 ms
101,888 KB
testcase_46 AC 906 ms
68,992 KB
testcase_47 AC 1,066 ms
101,760 KB
testcase_48 AC 1,050 ms
85,248 KB
testcase_49 AC 994 ms
85,376 KB
testcase_50 AC 245 ms
5,376 KB
testcase_51 AC 492 ms
23,936 KB
testcase_52 AC 413 ms
11,648 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 AC 825 ms
52,608 KB
testcase_55 AC 807 ms
15,744 KB
testcase_56 AC 733 ms
11,648 KB
testcase_57 AC 827 ms
19,840 KB
testcase_58 AC 649 ms
8,576 KB
testcase_59 AC 697 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
int n,m;
void go(vector<pair<int,int>> a,map<long long,int> &mp){
	int mm = a.size();
	rep(i,1<<mm){
		long long B = 0;
		int s = 0;
		rep(j,mm){
			if((i>>j)&1){
				B ^= 1LL<<a[j].first;
				B ^= 1LL<<a[j].second;
				s++;
			}
		}
		if(mp.count(B))mp[B] = min(mp[B],s);
		else mp[B] = s;
	}
}
		

int main(){
	
	
	cin>>n>>m;
	
	vector<pair<int,int>> a,b;
	rep(i,m){
		int x,y;
		cin>>x>>y;
		x--,y--;
		if(a.size()<20){
			a.emplace_back(x,y);
		}
		else{
			b.emplace_back(x,y);
		}
	}
	
	map<long long,int> mp1,mp2;
	go(a,mp1);
	go(b,mp2);
	long long c = 0;
	rep(i,n){
		int t;
		cin>>t;
		if(t)c |= 1LL<<i;
	}
	
	int ans = Inf32;
	
	for(auto x:mp1){
		if(mp2.count(c^x.first)){
			ans = min(ans,x.second + mp2[c^x.first]);
		}
	}
	
	
	if(ans==Inf32)ans = -1;
	cout<<ans<<endl;
	
	return 0;
}
0