Description

题目传送门:P10520 [XJTUPC2024] 榕树之心

求:

Analysis

直接模拟即可(运算记得带小数)。
| 式子 | 作用 |
| :—————: | :—————: |
| $\frac{1}{2}x$ | $x \div 2.0\ \operatorname{or} \ 0.5 \times x$ |
| $\sqrt{x}$ | $\operatorname{sqrt}(x \times 1.0)$ |

Code

1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;

int main()
{
int x , y;
cin >> x >> y;

cout << fixed << setprecision(6) << ((1/2.0)*x) + ((1/2.0) * y) << " " << fixed << setprecision(6) << ((sqrt(3.0) / 2.0) * x) - ((sqrt(3.0) / 2.0) * y);
return 0;
}