# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
400178 | Victor | Meetings (JOI19_meetings) | C++17 | 983 ms | 916 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define per(i, a, b) for (int i = b - 1; i >= (a); --i)
#define trav(a, x) for (auto &a : x)
#define all(x) x.begin(), x.end()
#define sz(x) x.size()
#define pb push_back
#define umap unordered_map
#define uset unordered_set
typedef pair<int, int> ii;
typedef pair<int, ii> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef long long ll;
const int INF = 1000000007;
struct edge {
int u, v;
};
vii EL;
vi children[4001];
void solve(int u) {
vi nodes = children[u];
int v = nodes[random() % sz(nodes)];
vi path;
path.pb(u);
rep(i, 0, sz(nodes)) {
int cur = nodes[i];
if (cur == v) continue;
int meet = Query(u, v, cur);
if (meet == cur) {
int lo = 1, hi = sz(path);
while (lo < hi) {
int mid = (hi + lo) >> 1;
meet = Query(u, cur, path[mid]);
if (meet == cur)
hi = mid;
else
lo = mid + 1;
}
path.insert(path.begin() + lo, cur);
} else
children[meet == u ? meet + 2000 : meet].pb(cur);
}
path.pb(v);
if (!children[u + 2000].empty()) {
children[u].swap(children[u + 2000]);
children[u + 2000].clear();
solve(u);
}
rep(i, 0, sz(path) - 1) EL.emplace_back(min(path[i], path[i + 1]), max(path[i], path[i + 1]));
rep(i, 1, sz(path)) if (sz(children[path[i]])) solve(path[i]);
}
void Solve(int N) {
fill(children, children + 2001, vi());
rep(i, 1, N) children[0].pb(i);
solve(0);
sort(all(EL));
trav(edg, EL) Bridge(edg.first,edg.second);
}
컴파일 시 표준 에러 (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... |