[C++] AtCoder Beginner Contest 183 B번 Billiards
03 Jan 2021 | PSAtCoder Beginner Contest 183 B번 Billiards
문제
https://atcoder.jp/contests/abc183/tasks/abc183_b
풀이
시작지점 (sx,sy)가 있고 목적지점 (gx,gy)가 있을때 x축으로 공을쳐 쿠션을 이용하여 목적지점에 공을 도달하고자 할 때 어느지점을 조준해야하는지 찾는 문제
위 사진과 같이 직선으로 만들고 해당 직선의 x절편을 구하면 정답
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll,ll,ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc183/tasks/abc183_b
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll sx,sy,gx,gy;
cin >> sx >> sy >> gx >> gy;
if(sx > gx){
swap(sx,gx);
swap(sy,gy);
}
ll b = sy + gy;
cout << fixed;
cout.precision(10);
cout << (ld)(sy*gx+sx*gy)/(ld)b;
return 0;
}