結果

問題 No.2236 Lights Out On Simple Graph
ユーザー 👑 NachiaNachia
提出日時 2023-03-03 21:43:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,383 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 92,904 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-09-17 22:37:36
合計ジャッジ時間 35,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
5,248 KB
testcase_01 AC 148 ms
5,376 KB
testcase_02 AC 175 ms
5,376 KB
testcase_03 AC 691 ms
68,992 KB
testcase_04 WA -
testcase_05 AC 198 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 149 ms
5,376 KB
testcase_09 AC 174 ms
5,376 KB
testcase_10 AC 740 ms
68,992 KB
testcase_11 AC 299 ms
5,376 KB
testcase_12 AC 768 ms
68,864 KB
testcase_13 AC 830 ms
68,992 KB
testcase_14 AC 706 ms
68,864 KB
testcase_15 AC 666 ms
68,992 KB
testcase_16 AC 655 ms
68,864 KB
testcase_17 AC 726 ms
36,224 KB
testcase_18 AC 683 ms
68,992 KB
testcase_19 AC 702 ms
68,864 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 789 ms
68,864 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 755 ms
68,992 KB
testcase_28 AC 664 ms
68,864 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 797 ms
68,864 KB
testcase_36 AC 1,064 ms
68,864 KB
testcase_37 AC 801 ms
68,864 KB
testcase_38 AC 647 ms
19,840 KB
testcase_39 AC 348 ms
5,376 KB
testcase_40 AC 597 ms
36,224 KB
testcase_41 AC 448 ms
19,712 KB
testcase_42 AC 509 ms
36,224 KB
testcase_43 AC 371 ms
11,520 KB
testcase_44 AC 633 ms
36,096 KB
testcase_45 WA -
testcase_46 AC 428 ms
36,096 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 347 ms
19,712 KB
testcase_50 AC 259 ms
5,376 KB
testcase_51 AC 415 ms
19,712 KB
testcase_52 AC 495 ms
11,520 KB
testcase_53 AC 223 ms
5,376 KB
testcase_54 AC 596 ms
36,224 KB
testcase_55 AC 476 ms
11,520 KB
testcase_56 AC 320 ms
7,552 KB
testcase_57 AC 623 ms
11,648 KB
testcase_58 AC 349 ms
7,424 KB
testcase_59 AC 384 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <atcoder/modint>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

i64 GCD(i64 a, i64 b){ return b ? GCD(b,a%b) : a; }

using Modint = atcoder::static_modint<998244353>;


int main(){
    int N, M; cin >> N >> M;
    map<i64, int> Q0;
    vector<i64> E(40, 0);
    rep(i,M){
        int u, v; cin >> u >> v; u--; v--;
        E[i] = (1ll << u) | (1ll << v);
    }
    i64 C = 0;
    rep(i,N){ int a; cin >> a; C |= (i64)a << i; }
    rep(i,1<<20){
        i64 q = 0;
        rep(j,20) if(i&(1<<j)) q ^= E[j];
        int f = __builtin_popcount(i);
        auto I = Q0.find(q);
        if(I == Q0.end()) I = Q0.emplace(q, 1001001).first;
        I->second = min(I->second, f);
    }
    i64 ans = 1001001;
    rep(i,1<<20){
        int q = 0;
        rep(j,20) if(i&(1<<j)) q ^= E[20+j];
        auto I = Q0.find(C ^ q);
        if(I != Q0.end()) ans = min<i64>(ans, __builtin_popcount(i) + I->second);
    }
    if(ans >= 10000) ans = -1;
    cout << ans << endl;
    return 0;
}



struct ios_do_not_sync{
    ios_do_not_sync(){
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;

0