日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Not So Simple Polygon Embedding CodeForces - 1354C2(计算几何)

發布時間:2023/12/15 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Not So Simple Polygon Embedding CodeForces - 1354C2(计算几何) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

The statement of this problem is the same as the statement of problem C1. 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?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.

Input
The first line contains a single integer T (1≤T≤200) — the number of test cases.

Next T lines contain descriptions of test cases — one per line. Each line contains single odd integer n (3≤n≤199). Don’t forget you need to embed 2n-gon, not an n-gon.

Output
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.

Example
Input
3
3
5
199
Output
1.931851653
3.196226611
126.687663595
思路:挺難想的一個題目,貼一個參考博客吧:參考博客
代碼如下:

#include<bits/stdc++.h> #define ll long long #define PI acos(-1.0) using namespace std;int n;int main() {int t;scanf("%d",&t);while(t--){scanf("%d",&n);double z=1.0/(2.0-2.0*cos(PI/(n*1.0)));z=sqrt(z);double x1=sin(PI/(n*1.0)*round(n/4.0))*z*sqrt(2.0);double x2=sin(PI/2.0-(PI/(n*1.0)*round(n/4.0)))*z*sqrt(2.0);x1+=x2;printf("%.9lf\n",x1);}return 0; }

努力加油a啊,(o)/~

總結

以上是生活随笔為你收集整理的Not So Simple Polygon Embedding CodeForces - 1354C2(计算几何)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。