結果

問題 No.2236 Lights Out On Simple Graph
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-03-02 13:28:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,359 bytes
コンパイル時間 1,230 ms
コンパイル使用メモリ 122,324 KB
実行使用メモリ 85,328 KB
最終ジャッジ日時 2024-09-17 09:02:21
合計ジャッジ時間 20,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 564 ms
85,196 KB
testcase_04 AC 379 ms
76,976 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 469 ms
85,156 KB
testcase_07 AC 602 ms
85,096 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
5,964 KB
testcase_14 AC 385 ms
44,284 KB
testcase_15 AC 13 ms
5,632 KB
testcase_16 AC 22 ms
8,016 KB
testcase_17 WA -
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 51 ms
12,492 KB
testcase_20 AC 275 ms
44,124 KB
testcase_21 AC 50 ms
12,496 KB
testcase_22 AC 552 ms
85,108 KB
testcase_23 AC 692 ms
85,172 KB
testcase_24 WA -
testcase_25 AC 102 ms
21,716 KB
testcase_26 AC 586 ms
85,328 KB
testcase_27 AC 289 ms
44,240 KB
testcase_28 AC 547 ms
77,124 KB
testcase_29 AC 52 ms
12,496 KB
testcase_30 AC 557 ms
85,112 KB
testcase_31 AC 546 ms
85,272 KB
testcase_32 AC 554 ms
85,108 KB
testcase_33 AC 574 ms
85,204 KB
testcase_34 AC 493 ms
85,244 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 583 ms
85,204 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 196 ms
19,664 KB
testcase_41 AC 41 ms
8,400 KB
testcase_42 AC 237 ms
40,144 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 589 ms
85,088 KB
testcase_46 AC 435 ms
52,316 KB
testcase_47 AC 642 ms
85,204 KB
testcase_48 AC 378 ms
36,052 KB
testcase_49 AC 607 ms
85,088 KB
testcase_50 WA -
testcase_51 AC 135 ms
23,712 KB
testcase_52 WA -
testcase_53 AC 1 ms
5,376 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll N, M, m, a, b, vtx, ans=1e9, c=0, mx;
    cin >> N >> M;
    m = M/2;
    vector<pair<ll, ll>> e(M);
    for (int i=0; i<M; i++){
        cin >> a >> b; a--; b--;
        e[i] = {a, b};
    }

    for (int i=0; i<N; i++){
        cin >> a;
        c |= a*(1LL<<i);
    }

    vector<pair<ll, ll>> v;
    map<ll, ll> mp;

    mx = 1<<m;
    for (int i=0; i<mx; i++){
        vtx = 0;
        for (int j=0; j<m; j++){
            if (i & (1<<j)){
                tie(a, b) = e[j];
                vtx ^= (1LL<<a); vtx ^= (1LL<<b);
            }
        }
        v.push_back({vtx, __builtin_popcount(i)});
    }

    mx = 1<<(M-m);
    for (int i=0; i<mx; i++){
        vtx = 0;
        for (int j=0; j<(M-m); j++){
            if (i & (1<<j)){
                tie(a, b) = e[m+j];
                vtx ^= (1LL<<a); vtx ^= (1LL<<b);
            }   
        }
        mp[vtx] = __builtin_popcount(i);
    }

    for (auto [vtx, cnt] : v){
        if (mp.count(vtx ^ c)) ans = min(ans, cnt+mp[vtx ^ c]);
    }

    if (ans == 1e9) ans = -1;
    cout << ans << endl;

    return 0;
}
0