Submission #767603

#TimeUsernameProblemLanguageResultExecution timeMemory
767603shezittLogičari (COCI21_logicari)C++14
10 / 110
141 ms5796 KiB
#include<bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define gcd(a, b) __gcd(a, b) #define lcm(a,b) a*b/gcd(a,b) #define pb push_back #define ii pair<int,int> #define vi vector<int> #define vii vector<pair<int,int>> #define F first #define S second #define sz(x) (int)x.size() #define fast ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); #define fore(a, b, c) for(int a=b; a<c; ++a) #define all(x) x.begin(), x.end() #define endl '\n'; void __print(int x) {cerr << x;} void __print(long x) {cerr << x;} void __print(long long x) {cerr << x;} void __print(unsigned x) {cerr << x;} void __print(unsigned long x) {cerr << x;} void __print(unsigned long long x) {cerr << x;} void __print(float x) {cerr << x;} void __print(double x) {cerr << x;} void __print(long double x) {cerr << x;} void __print(char x) {cerr << '\'' << x << '\'';} void __print(const char *x) {cerr << '\"' << x << '\"';} void __print(const string &x) {cerr << '\"' << x << '\"';} void __print(bool x) {cerr << (x ? "true" : "false");} template<typename T, typename V> void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';} template<typename T> void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";} void _print() {cerr << "]\n";} template <typename T, typename... V> void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);} #define dbg(x...) cerr << "[" << #x << "] = ["; _print(x) #define raya cerr << "==========================" << endl; const double EPS = 1e-7; const double PI = acos(-1); const int MOD = 1e9+7; int TC = 1; const int N = 1e5+5; vi adj[N]; int main(){ fast; int n; cin >> n; fore(i, 0, n){ int u, v; cin >> u >> v; u--; v--; adj[u].pb(v); adj[v].pb(u); } int ans = 1e9; auto check = [&](vector<bool>& blue) -> bool { bool ok = 1; int r; for(int u=0; u<n; ++u){ r = 0; for(int v : adj[u]){ if(blue[v]){ r++; } } ok &= r == 1; } return ok; }; for(int mask=1; mask<(1<<n); ++mask){ vector<bool> blue(n); for(int i=0; (1<<i)<=mask; ++i){ if((1<<i) & mask){ blue[i] = 1; } } if(check(blue)){ ans = min(ans, __builtin_popcount(mask)); } } cout << (ans == 1e9 ? -1 : ans); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...