#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define fr first
#define sc second
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define pw(x) (1ll << x)
#define sz(x) (int)((x).size())
#define pb push_back
#define endl '\n'
#define mp make_pair
#define vec vector
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef long double ld;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
typedef unsigned long long ull;
typedef unsigned int uint;
template <typename T> inline bool umin (T &a, const T &b) { if (a > b) { a = b; return 1; } return 0; }
template <typename T> inline bool umax (T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }
template <typename T>
using oset = tree<T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;
inline void solve () {
int n, k; cin >> n >> k;
vector <int> cnt (n);
vector <set <int>> g (n);
for (int i = 0; i < n; ++i) {
cin >> cnt[i];
for (int j = 0; j < cnt[i]; ++j) {
int x; cin >> x;
g[i].insert(x);
}
}
int ans = 0;
for (int i = 0; i < n; ++i) {
vector <int> ar;
for (auto j : g[i]) ar.pb(j);
for (int msk = 0; msk < pw(sz(ar)); ++msk) {
if (__builtin_popcount(msk) <= ans) continue;
vector <int> b;
for (int j = 0; j < sz(ar); ++j) if (msk >> j & 1) b.pb(ar[j]);
bool okich = 1;
for (int i = 0; i < sz(b) && okich; ++i) {
for (int j = i + 1; j < sz(b) && okich; ++j) {
if (g[b[i]].find(ar[j]) == g[b[i]].end()) okich = 0;
}
}
if (okich) umax(ans, __builtin_popcount(msk));
}
for (auto j : g[i]) g[j].erase(i);
}
cout << ans + 1 << endl;
}
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int t = 1; // cin >> t;
while (t--) solve();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
4 ms |
980 KB |
Output is correct |
4 |
Correct |
2692 ms |
1068 KB |
Output is correct |
5 |
Correct |
628 ms |
1104 KB |
Output is correct |
6 |
Execution timed out |
3100 ms |
980 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
4 ms |
980 KB |
Output is correct |
4 |
Correct |
2692 ms |
1068 KB |
Output is correct |
5 |
Correct |
628 ms |
1104 KB |
Output is correct |
6 |
Execution timed out |
3100 ms |
980 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
468 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Incorrect |
0 ms |
320 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
4 ms |
980 KB |
Output is correct |
4 |
Correct |
2692 ms |
1068 KB |
Output is correct |
5 |
Correct |
628 ms |
1104 KB |
Output is correct |
6 |
Execution timed out |
3100 ms |
980 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
4 ms |
980 KB |
Output is correct |
4 |
Correct |
2692 ms |
1068 KB |
Output is correct |
5 |
Correct |
628 ms |
1104 KB |
Output is correct |
6 |
Execution timed out |
3100 ms |
980 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |