# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
164569 | dolphingarlic | City (BOI06_city) | C++14 | 6 ms | 888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FOR(i, x, y) for (int i = x; i < y; i++)
typedef long long ll;
using namespace std;
struct Country {
int x, y, s, id;
};
bool operator<(Country A, Country B) {
if (A.s == B.s) return A.id < B.id;
return A.s > B.s;
};
int cmp[1000];
int find(int A) {
while (A != cmp[A]) cmp[A] = cmp[cmp[A]], A = cmp[A];
return A;
}
void onion(int A, int B) {
cmp[find(A)] = cmp[find(B)];
}
Country c[1000];
string ans[1000];
double dist(Country A, Country B) {
return (A.x - B.x) * (A.x - B.x) + (A.y - B.y) * (A.y - B.y);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
FOR(i, 0, n) {
cin >> c[i].x >> c[i].y >> c[i].s;
c[i].id = i;
cmp[i] = i;
}
sort(c, c + n);
FOR(i, 0, n) {
vector<pair<double, int>> v;
FOR(j, 0, i) {
double inf = c[j].s / dist(c[i], c[j]);
if (inf > c[i].s) v.push_back({-inf, c[j].id});
}
sort(v.begin(), v.end());
if (v.size()) {
if (v.size() > 1 && v[0].first == v[1].first) ans[c[i].id] = "D";
else {
ans[c[i].id] = to_string(find(v[0].second) + 1);
onion(c[i].id, v[0].second);
}
} else ans[c[i].id] = "K";
}
FOR(i, 0, n) cout << ans[i] << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |