# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
243603 | osaaateiasavtnl | Meetings (JOI19_meetings) | C++14 | 3073 ms | 4484 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include<bits/stdc++.h>
using namespace std;
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';
const int N = 2007;
bool par[N][N]; //is j parent of i
int sub[N];
int fath[N];
void Solve(int N) {
int n = N;
for (int i = 1; i < N; ++i)
for (int j = i + 1; j < N; ++j) {
int x = Query(0, i, j);
if (x == i)
++par[j][i];
else if (x == j)
++par[i][j];
}
sub[0] = N;
for (int i = 0; i < n; ++i)
for (int j = 0; j < n; ++j)
sub[i] += par[j][i];
for (int i = 1; i < n; ++i) {
fath[i] = 0;
for (int j = 0; j < n; ++j) {
if (par[i][j] && sub[j] < sub[fath[i]]) {
fath[i] = j;
}
}
int u = i, v = fath[i];
if (v < u)
swap(u, v);
Bridge(u, v);
}
}
컴파일 시 표준 에러 (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... |