結果

問題 No.2236 Lights Out On Simple Graph
ユーザー t98slidert98slider
提出日時 2023-03-04 00:34:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 4,000 ms
コード長 1,296 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 177,324 KB
実行使用メモリ 19,596 KB
最終ジャッジ日時 2024-09-18 00:45:19
合計ジャッジ時間 13,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 263 ms
19,456 KB
testcase_04 AC 159 ms
19,456 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 269 ms
19,528 KB
testcase_07 AC 264 ms
19,456 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 66 ms
7,296 KB
testcase_11 AC 46 ms
5,376 KB
testcase_12 AC 104 ms
11,264 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 207 ms
19,584 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 38 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 129 ms
11,276 KB
testcase_21 AC 26 ms
5,376 KB
testcase_22 AC 262 ms
19,584 KB
testcase_23 AC 286 ms
19,432 KB
testcase_24 AC 242 ms
19,532 KB
testcase_25 AC 52 ms
7,296 KB
testcase_26 AC 266 ms
19,456 KB
testcase_27 AC 137 ms
11,264 KB
testcase_28 AC 218 ms
19,584 KB
testcase_29 AC 26 ms
5,376 KB
testcase_30 AC 253 ms
19,584 KB
testcase_31 AC 259 ms
19,328 KB
testcase_32 AC 251 ms
19,584 KB
testcase_33 AC 260 ms
19,584 KB
testcase_34 AC 249 ms
19,548 KB
testcase_35 AC 320 ms
19,544 KB
testcase_36 AC 324 ms
19,584 KB
testcase_37 AC 299 ms
19,584 KB
testcase_38 AC 333 ms
19,508 KB
testcase_39 AC 324 ms
19,456 KB
testcase_40 AC 146 ms
11,264 KB
testcase_41 AC 28 ms
5,376 KB
testcase_42 AC 107 ms
11,304 KB
testcase_43 AC 9 ms
5,376 KB
testcase_44 AC 311 ms
19,432 KB
testcase_45 AC 271 ms
19,496 KB
testcase_46 AC 264 ms
19,584 KB
testcase_47 AC 280 ms
19,456 KB
testcase_48 AC 279 ms
19,552 KB
testcase_49 AC 265 ms
19,456 KB
testcase_50 AC 10 ms
5,376 KB
testcase_51 AC 65 ms
7,148 KB
testcase_52 AC 8 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 239 ms
19,584 KB
testcase_55 AC 374 ms
19,456 KB
testcase_56 AC 310 ms
19,596 KB
testcase_57 AC 370 ms
19,456 KB
testcase_58 AC 308 ms
19,476 KB
testcase_59 AC 303 ms
19,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, m1, m2, u, v;
    cin >> n >> m;
    m1 = m / 2, m2 = m - m1;
    ll S;
    vector<ll> edge1(m1), edge2(m2);
    vector<pair<ll,int>> b(1 << m2);
    for(int i = 0; i < m; i++){
        cin >> u >> v;
        u--, v--;
        if(i < m1) edge1[i] = (1ll << u) | (1ll << v);
        else edge2[i - m1] = (1ll << u) | (1ll << v);
    }
    S = 0;
    for(int i = 0; i < n; i++){
        cin >> v;
        if(v) S |= 1ll << i;
    }
    for(int i = 0; i < (1 << m2); i++){
        ll S = 0;
        for(int j = 0; j < m2; j++){
            if(i >> j & 1) S ^= edge2[j];
        }
        b[i] = make_pair(S, __builtin_popcount(i));
    }
    sort(b.begin(), b.end());
    auto f = [&](ll S){
        int j = lower_bound(b.begin(), b.end(), make_pair(S, -1)) - b.begin();
        if(j == b.size() || S != b[j].first) return 1 << 30;
        return b[j].second;
    };
    int ans = 1 << 30;
    for(int i = 0; i < (1 << m1); i++){
        ll T = 0;
        for(int j = 0; j < m1; j++){
            if(i >> j & 1) T ^= edge1[j];
        }
        ans = min(ans, f(S ^ T) + __builtin_popcount(i));
    }
    if(ans >> 30) ans = -1;
    cout << ans << '\n';
}
0