題意:
(from luckycat)
解法:
先設正五角形的邊為 v,最大正方形的邊為 u
而因為正五角形每個角是 108度 ,所以三角形上面的角只有 (108-90)/2 = 9 度,
所以整個三角形的角 上面為 9度、左邊為 108度、下面為 63度,
再依正弦定理 v/sin(63 deg) = u/sin(108 deg),
所以答案是 u = v * (sin(108 deg)/sin(63 deg))。
TAG: Math
注意:
程式碼:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Tittle: 10286 - Trouble with a Pentagon | |
* Author: Cheng-Shih, Wong | |
* Date: 2015/06/10 | |
*/ | |
// include files | |
#include <bits/stdc++.h> | |
using namespace std; | |
// definitions | |
#define FOR(i,a,b) for( int i=(a),_n=(b); i<=_n; ++i ) | |
#define clr(x,v) memset( x, v, sizeof(x) ) | |
#define PI acos(-1.0) | |
// declarations | |
double v; | |
// functions | |
// main function | |
int main( void ) | |
{ | |
double k = sin(108*PI/180)/sin(63*PI/180); | |
// input | |
while( scanf( "%lf", &v )==1 ) { | |
printf( "%.10lf\n", v*k ); | |
} | |
return 0; | |
} |
沒有留言:
張貼留言
任何意見都樂意傾聽