題意:
(from luckycat)
解 法: 盒子的體積是 (L-2*x)*(W-2*x)*x,微分等於零的時候會有極大/小值,然後 x 等於 0,盒子體積也最小。
TAG: Math
注意: 輸出要加上 machine epsilon 喔~
程式碼:
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: 10215 - The Largest/Smallest Box ... | |
* Author: Cheng-Shih, Wong | |
* Date: 2015/05/20 | |
*/ | |
// include files | |
#include <iostream> | |
#include <cstdio> | |
#include <cstring> | |
#include <cmath> | |
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 EPS 1e-8 | |
// declarations | |
double l, w; | |
// functions | |
inline double volume( double x ) | |
{ | |
return x*(l-2*x)*(w-2*x); | |
} | |
// main function | |
int main( void ) | |
{ | |
double a, b; | |
double lpw, lmw; | |
// input | |
while( scanf( "%lf%lf", &l, &w )==2 ) { | |
// solve | |
lpw = l+w; | |
lmw = l*w; | |
a = (lpw + sqrt(lpw*lpw-3*lmw))/6; | |
b = (lpw - sqrt(lpw*lpw-3*lmw))/6; | |
if( volume(a) < volume(b) ) swap( a, b ); | |
// output | |
printf( "%.3lf 0.000 %.3lf\n", a+EPS, min(l,w)/2.0+EPS ); | |
} | |
return 0; | |
} |
從體積對x做圖來看 體積要最大 一定是x小的解 另外想問 為什麼要+EPS?
回覆刪除你說的沒錯,所以45行的地方其實不用特地比較體積....
刪除+EPS的部分
詳細的細節我無法說明清楚
但我的認知猜測是
比較老一點的題目在檢查浮點數比較時 是以 "==" 來進行比較
而這樣的比較 會出現問題
比方說 浮點數 0.1 加了10次之後 並不會等於 1.0
老一點的題目 卻是採用這樣的方式
所以通常會加個足夠小的數上去....
你可以嘗試關鍵字 "IEEE 754", "machine epsilon"
大概會有點概念 ><