結果

問題 No.2236 Lights Out On Simple Graph
ユーザー no wayno way
提出日時 2023-03-03 22:18:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,216 ms / 4,000 ms
コード長 772 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 176,352 KB
実行使用メモリ 134,784 KB
最終ジャッジ日時 2024-09-17 23:21:33
合計ジャッジ時間 34,520 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1,068 ms
134,528 KB
testcase_04 AC 493 ms
101,888 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 718 ms
134,656 KB
testcase_07 AC 865 ms
85,632 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 227 ms
28,288 KB
testcase_11 AC 67 ms
6,944 KB
testcase_12 AC 331 ms
36,352 KB
testcase_13 AC 28 ms
7,680 KB
testcase_14 AC 661 ms
69,120 KB
testcase_15 AC 19 ms
6,940 KB
testcase_16 AC 36 ms
9,728 KB
testcase_17 AC 116 ms
14,848 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 83 ms
15,872 KB
testcase_20 AC 484 ms
69,120 KB
testcase_21 AC 78 ms
16,000 KB
testcase_22 AC 978 ms
134,784 KB
testcase_23 AC 1,216 ms
134,656 KB
testcase_24 AC 704 ms
69,248 KB
testcase_25 AC 149 ms
28,160 KB
testcase_26 AC 1,003 ms
134,656 KB
testcase_27 AC 553 ms
69,120 KB
testcase_28 AC 773 ms
101,888 KB
testcase_29 AC 74 ms
15,872 KB
testcase_30 AC 990 ms
134,784 KB
testcase_31 AC 1,065 ms
134,656 KB
testcase_32 AC 954 ms
134,784 KB
testcase_33 AC 1,083 ms
134,784 KB
testcase_34 AC 907 ms
134,656 KB
testcase_35 AC 1,136 ms
101,376 KB
testcase_36 AC 1,215 ms
71,168 KB
testcase_37 AC 1,170 ms
134,528 KB
testcase_38 AC 931 ms
19,968 KB
testcase_39 AC 606 ms
6,940 KB
testcase_40 AC 423 ms
28,032 KB
testcase_41 AC 68 ms
11,776 KB
testcase_42 AC 345 ms
44,544 KB
testcase_43 AC 20 ms
6,944 KB
testcase_44 AC 912 ms
51,840 KB
testcase_45 AC 1,083 ms
101,888 KB
testcase_46 AC 699 ms
69,120 KB
testcase_47 AC 984 ms
101,888 KB
testcase_48 AC 860 ms
85,376 KB
testcase_49 AC 842 ms
85,504 KB
testcase_50 AC 10 ms
6,940 KB
testcase_51 AC 226 ms
24,064 KB
testcase_52 AC 13 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 532 ms
36,096 KB
testcase_55 AC 741 ms
14,848 KB
testcase_56 AC 588 ms
11,392 KB
testcase_57 AC 864 ms
18,048 KB
testcase_58 AC 555 ms
8,448 KB
testcase_59 AC 603 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=44;
int n,m;
int a[N],b[N],x;
long long s;
map<long long,int>mp;
int main(){
	scanf("%d%d",&n,&m);
	for (int i=1;i<=m;i++) scanf("%d%d",&a[i],&b[i]);
	for (int i=1;i<=n;i++){
		scanf("%d",&x);
		if (x) s+=(1ll<<(i-1));
	}
	int w=(m/2);
	for (int i=0;i<(1<<w);i++){
		long long t=0;
		int sum=0;
		for (int j=0;j<w;j++) if ((i>>j)&1) t^=(1ll<<(a[j+1]-1))^(1ll<<(b[j+1]-1)),sum++;
		if (!mp[s^t]) mp[s^t]=sum+1;
		else mp[s^t]=min(mp[s^t],sum+1);
	}
	int ans=m+1;
	for (int i=0;i<(1<<(m-w));i++){
		long long t=0;
		int sum=0;
		for (int j=0;j<(m-w);j++) if ((i>>j)&1) t^=(1ll<<(a[j+1+w]-1))^(1ll<<(b[j+1+w]-1)),sum++;
		if (mp[t]) ans=min(ans,mp[t]+sum-1);
 	}
	if (ans==(m+1)) puts("-1"); else printf("%d\n",ans);
}
0