A13368 | Simple Polygon Embedding
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The statement of this problem is the same as the statement of problem C2. The only difference is that, in problem C1, $n$ is always even, and in C2, $n$ is always odd.
You are given a regular polygon with $2 \cdot n$ vertices (it's convex and has equal sides and equal angles) and all its sides have length $1$ . Let's name it as $2n$ -gon.
Your task is to find the square of the minimum size such that you can embed $2n$ -gon in the square. Embedding $2n$ -gon in the square means that you need to place $2n$ -gon in the square in such way that each point which lies inside or on a border of $2n$ -gon should also lie inside or on a border of the square.
You can rotate $2n$ -gon and/or the square.
You are given a regular polygon with $2 \cdot n$ vertices (it's convex and has equal sides and equal angles) and all its sides have length $1$ . Let's name it as $2n$ -gon.
Your task is to find the square of the minimum size such that you can embed $2n$ -gon in the square. Embedding $2n$ -gon in the square means that you need to place $2n$ -gon in the square in such way that each point which lies inside or on a border of $2n$ -gon should also lie inside or on a border of the square.
You can rotate $2n$ -gon and/or the square.
输入格式
The first line contains a single integer $T$ ( $1 \le T \le 200$ ) — the number of test cases.
Next $T$ lines contain descriptions of test cases — one per line. Each line contains single even integer $n$ ( $2 \le n \le 200$ ). Don't forget you need to embed $2n$ -gon, not an $n$ -gon.
Next $T$ lines contain descriptions of test cases — one per line. Each line contains single even integer $n$ ( $2 \le n \le 200$ ). Don't forget you need to embed $2n$ -gon, not an $n$ -gon.
输出格式
Print $T$ real numbers — one per test case. For each test case, print the minimum length of a side of the square $2n$ -gon can be embedded in. Your answer will be considered correct if its absolute or relative error doesn't exceed $10^{-6}$ .
输入输出样例
输入 #1
3 2 4 200
输出 #1
1.000000000 2.414213562 127.321336469
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted