# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
841299 | serifefedartar | Political Development (BOI17_politicaldevelopment) | C++17 | 3077 ms | 28048 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
typedef long long ll;
#define f first
#define s second
#define MOD 1000000007
#define LOGN 20
#define MAXN 50005
vector<set<int>> graph;
int deg[MAXN];
int main() {
fast
int N, K, x, D;
cin >> N >> K;
graph = vector<set<int>>(N, set<int>());
queue<int> q;
for (int i = 0; i < N; i++) {
cin >> deg[i];
for (int j = 0; j < deg[i]; j++) {
cin >> x;
graph[i].insert(x);
}
if (deg[i] < K)
q.push(i);
}
int ans = 1;
while (!q.empty()) {
int node = q.front();
q.pop();
int degree = graph[node].size();
vector<int> adj;
for (auto u : graph[node])
adj.push_back(u);
int mx_mask = (1<<degree) - 1;
for (int msk = 1; msk <= mx_mask; msk++) {
int k = __builtin_popcount(msk);
if (k + 1 <= ans)
continue;
vector<int> taken;
taken.push_back(node);
bool check = true;
for (int j = 0; j < degree; j++) {
if ((1<<j) & msk) {
for (auto u : taken) {
if (graph[adj[j]].count(u) == 0)
check = false;
}
taken.push_back(adj[j]);
}
}
if (check)
ans = max(ans, k + 1);
}
for (auto u : graph[node]) {
graph[u].erase(node);
deg[u]--;
if (deg[u] < K)
q.push(u);
}
}
cout << ans << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |