chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,28 +1,28 @@
---
id: 5900f4731000cf542c50ff85
title: 问题262山脉
title: 'Problem 262: Mountain Range'
challengeType: 5
videoUrl: ''
forumTopicId: 301911
dashedName: problem-262-mountain-range
---
# --description--
以下等式表示山区的连续地形给出任意点xy处的高程h
The following equation represents the continuous topography of a mountainous region, giving the elevation h at any point (x,y):
蚊子打算从A200,200飞到B1400,1400而不会离开0≤xy≤1600的区域。
A mosquito intends to fly from A(200,200) to B(1400,1400), without leaving the area given by 0 ≤ x, y ≤ 1600.
由于中间的山脉它首先直线上升到A'点具有高度f。然后在保持在相同高度f的同时它在任何障碍物周围飞行直到它到达B正上方的B'点。
Because of the intervening mountains, it first rises straight up to a point A', having elevation f. Then, while remaining at the same elevation f, it flies around any obstacles until it arrives at a point B' directly above B.
首先确定fmin它是允许从A到B的这种行程的最小恒定高度同时保持在指定区域。然后找到A'和B'之间最短路径的长度,同时以恒定高度fmin飞行。
First, determine fmin which is the minimum constant elevation allowing such a trip from A to B, while remaining in the specified area. Then, find the length of the shortest path between A' and B', while flying at that constant elevation fmin.
将该长度作为答案,四舍五入到小数点后三位。
Give that length as your answer, rounded to three decimal places.
注意为方便起见下面以适合大多数编程语言的形式重复上面显示的高程函数h =5000-0.005 *x* x + y *y + x* y+12.5 *x + y* exp - abs0.000001 *x* x + y *y-0.0015* x + y+0.7
Note: For convenience, the elevation function shown above is repeated below, in a form suitable for most programming languages: h=( 5000-0.005*(x*x+y*y+x*y)+12.5*(x+y) )* exp( -abs(0.000001*(x*x+y*y)-0.0015*(x+y)+0.7) )
# --hints--
`euler262()`应返回2531.205
`euler262()` should return 2531.205.
```js
assert.strictEqual(euler262(), 2531.205);