結果
問題 | No.2236 Lights Out On Simple Graph |
ユーザー | au7777 |
提出日時 | 2023-04-18 02:19:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,112 bytes |
コンパイル時間 | 3,650 ms |
コンパイル使用メモリ | 243,432 KB |
実行使用メモリ | 419,644 KB |
最終ジャッジ日時 | 2024-10-13 00:50:39 |
合計ジャッジ時間 | 9,491 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> typedef long long int ll; using namespace std; typedef pair<ll, ll> P; using namespace atcoder; template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>; #define USE998244353 #ifdef USE998244353 const ll MOD = 998244353; using mint = modint998244353; #else const ll MOD = 1000000007; using mint = modint1000000007; #endif const int MAX = 2000005; long long fac[MAX], finv[MAX], inv[MAX]; void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++){ fac[i] = fac[i - 1] * i % MOD; inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD; finv[i] = finv[i - 1] * inv[i] % MOD; } } long long COM(int n, int k){ if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } ll gcd(ll x, ll y) { if (y == 0) return x; else if (y > x) { return gcd (y, x); } else return gcd(x % y, y); } ll lcm(ll x, ll y) { return x / gcd(x, y) * y; } ll my_sqrt(ll x) { // ll m = 0; ll M = 3000000001; while (M - m > 1) { ll now = (M + m) / 2; if (now * now <= x) { m = now; } else { M = now; } } return m; } ll keta(ll num, ll arity) { ll ret = 0; while (num) { num /= arity; ret++; } return ret; } ll ceil(ll n, ll m) { // n > 0, m > 0 ll ret = n / m; if (n % m) ret++; return ret; } ll pow_ll(ll x, ll n) { if (n == 0) return 1; if (n % 2) { return pow_ll(x, n - 1) * x; } else { ll tmp = pow_ll(x, n / 2); return tmp * tmp; } } vector<ll> compress(vector<ll>& v) { // [3 5 5 6 1 1 10 1] -> [1 2 2 3 0 0 4 0] vector<ll> u = v; sort(u.begin(), u.end()); u.erase(unique(u.begin(),u.end()),u.end()); map<ll, ll> mp; for (int i = 0; i < u.size(); i++) { mp[u[i]] = i; } for (int i = 0; i < v.size(); i++) { v[i] = mp[v[i]]; } return v; } int main() { int n, m; cin >> n >> m; vector<int> a(m); vector<int> b(m); for (int i = 0; i < m; i++) { cin >> a[i] >> b[i]; a[i]--; b[i]--; } vector<int> c(n); for (int i = 0; i < n; i++) { cin >> c[i]; } vector<vector<int>> former; vector<vector<int>> latter; int fonum = m / 2; int lanum = m - m / 2; for (int i = 0; i < (1 << fonum); i++) { vector<int> reverse(n, 0); for (int j = 0; j < fonum; j++) { if ((i >> j) & 1) { reverse[a[j]] = 1 - reverse[a[j]]; reverse[b[j]] = 1 - reverse[b[j]]; } } former.push_back(reverse); } for (int i = 0; i < (1 << lanum); i++) { vector<int> reverse(n, 0); for (int j = 0; j < lanum; j++) { if ((i >> j) & 1) { reverse[a[fonum + j]] = 1 - reverse[a[fonum + j]]; reverse[b[fonum + j]] = 1 - reverse[b[fonum + j]]; } } latter.push_back(reverse); } int ans = 100000; for (int i = 0; i < (1 << fonum); i++) { for (int j = 0; j < (1 << lanum); j++) { int cnt = 0; for (int k = 0; k < fonum; k++) { if ((i >> k) & 1) cnt++; } for (int k = 0; k < lanum; k++) { if ((j >> k) & 1) cnt++; } vector<int> cur = c; for (int k = 0; k < n; k++) { if (former[i][k] != latter[j][k]) { cur[k] = 1 - cur[k]; } } bool ok = true; // cout << i << ' ' << j << endl; for (int k = 0; k < n; k++) { // cout << cur[k] << ' '; if (cur[k]) ok = false; } // cout << endl; if (ok) ans = min(ans, cnt); } } if (ans == 100000) { cout << -1 << endl; } else { cout << ans << endl; } return 0; }