# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
311098 | 2020-10-09T09:02:37 Z | Vladth11 | Political Development (BOI17_politicaldevelopment) | C++14 | 54 ms | 2944 KB |
//Chiar si dupa editorial la sf am avut nevoie de ajutor cum fac cu inceputul si sf. Multumiri sursei lui Dani #include <bits/stdc++.h> #define debug(x) cerr << #x << " " << x << "\n" #define debug_with_space(x) cerr << #x << " " << x << " " using namespace std; typedef long long ll; typedef pair <ll, ll> pii; typedef pair <ll, pii> muchie; const ll NMAX = 100005; const ll INF = (1LL << 60); const ll MOD = 1000000007; const ll BLOCK = 101; vector <int> v[NMAX]; unordered_set <int> st; int main() { // ifstream cin("catsfood.in"); // ofstream cout("catsfood.out"); ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, k, i, d; cin >> n >> k; for(i = 1; i <= n; i++){ int d; cin >> d; v[i].push_back(i); while(d--){ int x; cin >> x; v[i].push_back(x); } sort(v[i].begin(), v[i].end()); } int maxim = 0; for(i = 1; i <= n; i++){ int nrbits = v[i].size(); for(int mask = 1; mask < (1 << nrbits); mask++){ st.clear(); int cnt = 0; for(int j = nrbits - 1;j >= 0;j--){ if(mask & (1 << j)){ st.insert(j); for(auto x : v[v[i][j]]){ if(st.find(x) != st.end()) cnt++; } } } int bb = __builtin_popcount(mask) + 1; if(cnt == bb * (bb - 1) / 2) maxim = max(maxim, bb); } } cout << maxim; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 2688 KB | Output is correct |
2 | Correct | 2 ms | 2688 KB | Output is correct |
3 | Correct | 54 ms | 2944 KB | Output is correct |
4 | Incorrect | 23 ms | 2944 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 2688 KB | Output is correct |
2 | Correct | 2 ms | 2688 KB | Output is correct |
3 | Correct | 54 ms | 2944 KB | Output is correct |
4 | Incorrect | 23 ms | 2944 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 2816 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 2688 KB | Output is correct |
2 | Correct | 2 ms | 2688 KB | Output is correct |
3 | Correct | 54 ms | 2944 KB | Output is correct |
4 | Incorrect | 23 ms | 2944 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 2688 KB | Output is correct |
2 | Correct | 2 ms | 2688 KB | Output is correct |
3 | Correct | 54 ms | 2944 KB | Output is correct |
4 | Incorrect | 23 ms | 2944 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |