結果

問題 No.2236 Lights Out On Simple Graph
ユーザー t98slidert98slider
提出日時 2023-03-04 00:08:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,606 bytes
コンパイル時間 1,496 ms
コンパイル使用メモリ 176,360 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-09-18 00:41:07
合計ジャッジ時間 11,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2,855 ms
11,264 KB
testcase_04 AC 62 ms
11,776 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 63 ms
11,724 KB
testcase_07 AC 88 ms
11,492 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 85 ms
5,376 KB
testcase_11 AC 44 ms
5,376 KB
testcase_12 AC 349 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 81 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 7 ms
9,344 KB
testcase_21 AC 165 ms
5,376 KB
testcase_22 AC 171 ms
11,264 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

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, n1, n2, u, v;
    cin >> n >> m;
    n1 = n / 2, n2 = n - n1;
    ll S;
    vector<int> edge1, edge2;
    vector<ll> edge3;
    vector<int> dp1(1 << n1, 1 << 29), dp2(1 << n2, 1 << 29);
    for(int i = 0; i < m; i++){
        cin >> u >> v;
        u--, v--;
        S = (1ll << u) | (1ll << v);
        if(max(u, v) < n1) edge1.push_back(S);
        else if(min(u, v) >= n1) edge2.push_back(S >> n1);
        else edge3.push_back(S);
    }
    S = 0;
    for(int i = 0; i < n; i++){
        cin >> v;
        S |= (ll)(v) << i;
    }
    queue<int> nxt;
    dp1[S & ((1 << n1) - 1)] = dp2[S >> n1] = 0;
    nxt.push(S & ((1 << n1) - 1));
    while(!nxt.empty()){
        v = nxt.front();
        nxt.pop();
        for(auto &&T : edge1){
            if(dp1[v] + 1 >= dp1[v ^ T])continue;
            dp1[v ^ T] = dp1[v] + 1;
            nxt.push(v ^ T);
        }
    }
    nxt.push(S >> n1);
    while(!nxt.empty()){
        v = nxt.front();
        nxt.pop();
        for(auto &&T : edge2){
            if(dp2[v] + 1 >= dp2[v ^ T])continue;
            dp2[v ^ T] = dp2[v] + 1;
            nxt.push(v ^ T);
        }
    }
    int ans = 1 << 29;
    for(int i = 0; i < (1 << edge3.size()); i++){
        S = 0;
        for(int j = 0; j < edge3.size(); j++){
            if(i >> j & 1) S ^= edge3[j];
        }
        ans = min(ans, dp1[S & ((1 << n1) - 1)] + dp2[S >> n1] + __builtin_popcount(i));
    }
    if(ans >> 29) ans = -1;
    cout << ans << '\n';
}
0