結果

問題 No.2236 Lights Out On Simple Graph
ユーザー umimelumimel
提出日時 2023-03-05 15:18:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 725 ms / 4,000 ms
コード長 1,586 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 180,544 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-09-18 01:35:46
合計ジャッジ時間 23,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 608 ms
68,864 KB
testcase_04 AC 441 ms
68,864 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 488 ms
68,864 KB
testcase_07 AC 654 ms
68,864 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 132 ms
11,520 KB
testcase_11 AC 58 ms
6,940 KB
testcase_12 AC 229 ms
19,712 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 505 ms
36,096 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 26 ms
7,424 KB
testcase_17 AC 69 ms
7,552 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 56 ms
11,520 KB
testcase_20 AC 289 ms
36,096 KB
testcase_21 AC 56 ms
11,648 KB
testcase_22 AC 551 ms
68,864 KB
testcase_23 AC 725 ms
68,992 KB
testcase_24 AC 511 ms
36,096 KB
testcase_25 AC 118 ms
19,712 KB
testcase_26 AC 630 ms
68,736 KB
testcase_27 AC 312 ms
35,968 KB
testcase_28 AC 623 ms
68,864 KB
testcase_29 AC 53 ms
11,520 KB
testcase_30 AC 571 ms
68,864 KB
testcase_31 AC 548 ms
68,864 KB
testcase_32 AC 577 ms
68,864 KB
testcase_33 AC 597 ms
68,864 KB
testcase_34 AC 515 ms
68,992 KB
testcase_35 AC 682 ms
35,968 KB
testcase_36 AC 481 ms
7,424 KB
testcase_37 AC 658 ms
68,864 KB
testcase_38 AC 543 ms
7,552 KB
testcase_39 AC 431 ms
6,944 KB
testcase_40 AC 259 ms
11,520 KB
testcase_41 AC 56 ms
7,296 KB
testcase_42 AC 262 ms
35,968 KB
testcase_43 AC 14 ms
6,940 KB
testcase_44 AC 546 ms
19,712 KB
testcase_45 AC 675 ms
68,864 KB
testcase_46 AC 560 ms
36,096 KB
testcase_47 AC 683 ms
68,864 KB
testcase_48 AC 495 ms
19,712 KB
testcase_49 AC 675 ms
68,864 KB
testcase_50 AC 11 ms
6,940 KB
testcase_51 AC 137 ms
19,712 KB
testcase_52 AC 13 ms
6,944 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 471 ms
19,712 KB
testcase_55 AC 485 ms
7,424 KB
testcase_56 AC 492 ms
7,296 KB
testcase_57 AC 613 ms
11,520 KB
testcase_58 AC 380 ms
6,944 KB
testcase_59 AC 421 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll n, m; cin >> n >> m;
    vector<ll> a(m), b(m);
    rep(i, m){
        cin >> a[i] >> b[i];
        a[i]--; b[i]--;
    }

    vector<ll> c(n); rep(i, n) cin >> c[i];

    ll m1 = m/2, m2 = m - m1;
    map<ll, ll> dp2;
    rep(bit, (1LL<<m2)){
        ll bit2 = 0;
        ll cnt = 0;
        rep(i, m2){
            if((bit>>i)&1){
                bit2 = bit2 ^ (1LL<<a[m1+i]);
                bit2 = bit2 ^ (1LL<<b[m1+i]);
                cnt++;
            }
        }

        if(dp2.find(bit2)!=dp2.end()){
            dp2[bit2] = min(dp2[bit2], cnt);
        }else{
            dp2[bit2] = cnt;
        }
    }

    ll T = 0;
    for(ll i=n-1; i>=0; i--) T = 2*T + c[i];

    ll ans = INF;
    rep(bit, (1LL<<m1)){
        ll bit1 = 0;
        ll cnt = 0;
        rep(i, m1){
            if((bit>>i)&1){
                bit1 = bit1 ^ (1LL<<a[i]);
                bit1 = bit1 ^ (1LL<<b[i]);
                cnt++;
            }
        }

        if(dp2.find(bit1 ^ T) != dp2.end()){
            ans = min(ans, cnt+dp2[bit1 ^ T]);
        }
    }

    if(ans == INF) cout << -1 << endl;
    else cout << ans << endl;
}
0