| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 738109 | Toxtaq | Balloons (CEOI11_bal) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>#include<vector>#include<algorithm>#include<numeric>#include<complex>#include<map>#include<iomanip>using namespace std;#define eps 1e-6int n;vector<pair<int, double>>balloons;vector<double>res;double dist(pair<int, double>a,pair<int,double>b){ return sqrt((a.first-b.first)*(a.first-b.first)+(a.second-b.second)*(a.second-b.second));}bool check(double mid, int indx){ for(int i = indx-1;i>=0;--i){ if(dist({balloons[i].first, res[i]},{balloons[indx].first, mid})-(res[i]+mid)< eps)return true; } return false;}int main(){ cin >> n; balloons.resize(n); for(int i = 0;i<n;++i){ cin >> balloons[i].first >> balloons[i].second; } res.resize(n); res[0]=balloons[0].second; for(int i = 1;i<n;++i){ double l = 1, r = balloons[i].second; while(r-l>eps){ double mid = (l+r)/2; if(check(mid, i)){ r = mid; } else l = mid; } res[i]=l; } for(double i : res)cout << fixed << setprecision(3)<< i << '\n';}
