結果

問題 No.2236 Lights Out On Simple Graph
ユーザー hiro71687khiro71687k
提出日時 2023-03-06 00:35:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,989 bytes
コンパイル時間 5,549 ms
コンパイル使用メモリ 269,496 KB
実行使用メモリ 200,192 KB
最終ジャッジ日時 2024-09-18 01:44:55
合計ジャッジ時間 50,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,632 ms
200,064 KB
testcase_04 AC 767 ms
134,528 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1,173 ms
200,064 KB
testcase_07 AC 1,125 ms
101,760 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 354 ms
44,416 KB
testcase_11 AC 77 ms
5,376 KB
testcase_12 AC 486 ms
52,608 KB
testcase_13 AC 40 ms
9,728 KB
testcase_14 AC 1,004 ms
101,760 KB
testcase_15 AC 26 ms
7,552 KB
testcase_16 AC 51 ms
11,648 KB
testcase_17 AC 166 ms
23,040 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 117 ms
19,840 KB
testcase_20 AC 746 ms
101,760 KB
testcase_21 AC 113 ms
19,712 KB
testcase_22 AC 1,514 ms
200,064 KB
testcase_23 AC 1,656 ms
200,064 KB
testcase_24 AC 988 ms
101,632 KB
testcase_25 AC 212 ms
36,224 KB
testcase_26 AC 1,521 ms
199,936 KB
testcase_27 AC 782 ms
101,888 KB
testcase_28 AC 1,092 ms
134,400 KB
testcase_29 AC 109 ms
19,712 KB
testcase_30 AC 1,532 ms
200,064 KB
testcase_31 AC 1,598 ms
200,064 KB
testcase_32 AC 1,489 ms
200,064 KB
testcase_33 AC 1,677 ms
200,192 KB
testcase_34 AC 1,497 ms
199,936 KB
testcase_35 AC 1,701 ms
166,784 KB
testcase_36 AC 1,479 ms
136,448 KB
testcase_37 AC 1,798 ms
199,808 KB
testcase_38 AC 972 ms
36,224 KB
testcase_39 AC 689 ms
5,632 KB
testcase_40 AC 544 ms
44,416 KB
testcase_41 AC 116 ms
15,744 KB
testcase_42 AC 449 ms
52,608 KB
testcase_43 AC 28 ms
6,528 KB
testcase_44 AC 1,264 ms
84,224 KB
testcase_45 AC 1,466 ms
134,400 KB
testcase_46 AC 1,122 ms
101,760 KB
testcase_47 AC 1,338 ms
134,528 KB
testcase_48 AC 1,516 ms
150,912 KB
testcase_49 AC 1,131 ms
101,760 KB
testcase_50 AC 15 ms
5,376 KB
testcase_51 AC 272 ms
27,904 KB
testcase_52 AC 20 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 828 ms
52,352 KB
testcase_55 AC 951 ms
22,912 KB
testcase_56 AC 820 ms
15,104 KB
testcase_57 AC 1,022 ms
25,984 KB
testcase_58 WA -
testcase_59 AC 780 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=10010010010010010;
ll mod=998244353;
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>a(m),b(m);
    for (ll i = 0; i < m; i++)
    {
        cin >> a[i] >> b[i];
        a[i]--,b[i]--;
    }
    vector<ll>c(n);
    vector<ll>two(50,1);
    for (ll i = 1; i < 50; i++)
    {
        two[i]=two[i-1]*2;
    }
    ll now=0;
    for (ll i = 0; i < n; i++)
    {
        cin >> c[i];
        now+=two[i]*c[i];
    }
    map<ll,ll>dp1,dp2;
    ll x=m/2;
    for (ll i = 0; i < two[x]; i++)
    {
        ll y=now;
        ll kai=0;
        for (ll j = 0; j < x; j++)
        {
            if (i&two[j])
            {
                y^=two[a[j]];
                y^=two[b[j]];
                kai+=1;
            }
        }
        if (y==now)
        {
            dp1[y]=0;
        }else{
            if (dp1[y]==0)
            {
                dp1[y]=kai;
            }else{
                dp1[y]=min(dp1[y],kai);
            }
        }
    }
    x=m-x;
    for (ll i = 0; i < two[x]; i++)
    {
        ll y=0;
        ll kai=0;
        for (ll j = m/2; j < m; j++)
        {
            if (i&two[j-m/2])
            {
                y^=two[a[j]];
                y^=two[b[j]];
                kai+=1;
            }
        }
        if (y==now)
        {
            dp2[y]=0;
        }else{
            if (dp2[y]==0)
            {
                dp2[y]=kai;
            }else{
                dp2[y]=min(dp2[y],kai);
            }
        }
    }
    ll ans=inf;
    for(auto v:dp1){
        if (v.first==0)
        {
            ans=min(ans,v.second);
        }else{
            if (dp2[v.first]!=0)
            {
                ans=min(ans,v.second+dp2[v.first]);
            }
        }
    }
    if (ans==inf)
    {
        cout << -1 << endl;
        return 0;
    }
    
    cout << ans <<endl;
}
0