# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
698410 | vjudge1 | Drawing (CEOI22_drawing) | C++14 | 241 ms | 39432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
struct Point {
int X, Y, id;
bool operator<(const Point& p) const {
if (X != p.X) return X < p.X;
return Y < p.Y;
}
};
const int NN = 1e6 + 10;
vector<int> G[NN];
Point Ps[NN];
int N, Ans[NN];
LL cross(const Point& a, const Point& b, const Point& c) {
return (LL)a.X * (b.Y - c.Y) + (LL)b.X * (c.Y - a.Y) + (LL)c.X * (a.Y - b.Y);
}
bool cmp(const Point& a, const Point& b) { return cross(Ps[0], a, b) >= 0; }
void dfs(int u, int fa, int& pi) {
Ans[u] = Ps[pi++].id;
for (int v : G[u])
if (v != fa) dfs(v, u, pi);
}
int main() {
ios::sync_with_stdio(false), cin.tie(0);
cin >> N;
for (int i = 1, a, b; i < N; i++)
cin >> a >> b, G[a].push_back(b), G[b].push_back(a);
for (int i = 0, x, y; i < N; i++) cin >> x >> y, Ps[i] = {x, y, i + 1};
sort(Ps, Ps + N), sort(Ps + 1, Ps + N, cmp);
# | 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... |