제출 #758893

#제출 시각아이디문제언어결과실행 시간메모리
758893Charizard2021Bosses (BOI16_bosses)C++17
100 / 100
510 ms596 KiB
#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false);; cin.tie(NULL) template<typename T> istream& operator>>(istream& in, vector<T>& a) {for(auto &x : a) in >> x; return in;}; template<typename T1, typename T2> istream& operator>>(istream& in, pair<T1, T2>& x) {return in >> x.first >> x.second;} template<typename T1, typename T2> ostream& operator<<(ostream& out, const pair<T1, T2>& x) {return out << x.first << ' ' << x.second;} template<typename T> ostream& operator<<(ostream& out, vector<T>& a) {for(auto &x : a) out << x << ' '; return out;}; template<typename T> ostream& operator<<(ostream& out, vector<vector<T> >& a) {for(auto &x : a) out << x << '\n'; return out;}; template<typename T1, typename T2> ostream& operator<<(ostream& out, vector<pair<T1, T2> >& a) {for(auto &x : a) out << x << '\n'; return out;}; void selfMax(int& a, int b){ a = max(a, b); } void selfMin(int& a, int b){ a = min(a, b); } /* Use DSU dsu(N); */ struct DSU { vector<int> e; DSU(int N) { e = vector<int>(N, -1); } // get representive component (uses path compression) int get(int x) { return e[x] < 0 ? x : e[x] = get(e[x]); } bool same_set(int a, int b) { return get(a) == get(b); } int size(int x) { return -e[get(x)]; } bool unite(int x, int y) { // union by size x = get(x), y = get(y); if (x == y) return false; if (e[x] > e[y]) swap(x, y); e[x] += e[y]; e[y] = x; return true; } }; /* Run with Bit<int> BIT */ template <class T> class BIT { private: int size; vector<T> bit; vector<T> arr; public: BIT(int size) : size(size), bit(size + 1), arr(size) {} void set(int ind, int val) { add(ind, val - arr[ind]); } void add(int ind, int val) { arr[ind] += val; ind++; for (; ind <= size; ind += ind & -ind) { bit[ind] += val; } } T pref_sum(int ind) { ind++; T total = 0; for (; ind > 0; ind -= ind & -ind) { total += bit[ind]; } return total; } }; /* Change Comb for specific Seg tree probs, but run with Seg<int> Seg; */ template<class T> struct Seg { const T ID = 1e18; T comb(T a, T b) { return min(a,b); } int n; vector<T> seg; void init(int _n) { n = _n; seg.assign(2*n,ID); } void pull(int p) { seg[p] = comb(seg[2*p],seg[2*p+1]); } void upd(int p, T val) { seg[p += n] = val; for (p /= 2; p; p /= 2) pull(p); } T query(int l, int r) { T ra = ID, rb = ID; for (l += n, r += n+1; l < r; l /= 2, r /= 2) { if (l&1) ra = comb(ra,seg[l++]); if (r&1) rb = comb(seg[--r],rb); } return comb(ra,rb); } }; const int N = 5001; vector<vector<int> > adj(N); int main(){ IOS; int n; cin >> n; for(int i = 0; i < n; i++){ int k; cin >> k; for(int j = 1; j <= k; j++){ int x; cin >> x; x--; adj[x].push_back(i); } } long long ans = 1e18; for(int i = 0; i < n; i++){ vector<bool> visited(n, false); int counter = 0; long long cost = 0; queue<pair<int, long long> >q ; q.push(make_pair(i, 1LL)); visited[i] = true; while(!q.empty()){ pair<int, long long> x = q.front(); q.pop(); counter++; int u = x.first; cost += x.second; for(int v : adj[u]){ if(!visited[v]){ visited[v] = true; q.push(make_pair(v, x.second + 1)); } } } if(counter == n){ ans = min(ans, cost); } } cout << ans << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...