# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1115839 | vjudge1 | Political Development (BOI17_politicaldevelopment) | C++17 | 776 ms | 310268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bitset>
#include <vector>
using namespace std;
bitset<50005> b[50005], bb;
vector<vector<int>> v[11];
vector<int> va;
int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, k, res = 1;
cin >> n >> k;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
for (int j = 0; j < x; j++) {
int y;
cin >> y;
if (y > i) {
b[i][y] = 1;
v[2].push_back({i, y});
}
}
}
for (int i = 2; i <= k; i++) {
if (v[i].empty()) break;
res = i;
if (i == k) break;
for (auto w : v[i]) {
bb = b[w[0]];
for (int i = 1; i < w.size(); i++) {
bb &= b[w[i]];
}
for (int j = bb._Find_first(); j <= n; j = bb._Find_next(j)) {
va = w;
va.push_back(j);
v[i + 1].push_back(va);
}
}
}
cout << res;
}
컴파일 시 표준 에러 (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... |