1748. Box walking

单点时限: 2.0 sec

内存限制: 256 MB

You are given a three-dimensional box of integral dimensions lx × ly × lz The edges of the box are axis-aligned, and one corner of the box is located at position (0, 0, 0). Given the coordinates (x, y, z) of some arbitrary position on the surface of the box, your goal is to return the square of the length of the shortest path along the box’s surface from (0, 0, 0) to (x, y, z).

If lx = 1, ly = 2, and lz = 1, then the shortest path from (0, 0, 0) to (1, 2, 1) is found by walking from (0, 0, 0) to (1, 1, 0), followed by walking from (1, 1, 0) to (1, 2, 1). The total path length is √8.

输入格式

The input test file will contain multiple test cases, each of which consists of six integers lx, ly, lz, x, y, z where 1 ≤ lx, ly, lz ≤ 1000. Note that the box may have zero volume, but the point (x, y, z) is always guaranteed to be on one of the six sides of the box. The end-of-file is marked by a test case with lx = ly = lz = x = y = z = 0 and should not be processed.

输出格式

For each test case, write a single line with a positive integer indicating the square of the shortest path length. (Note: The square of the path length is always an integer; thus, your answer is exact, not approximate.)

样例

Input
1 1 2 1 1 2
1 1 1 1 1 1
0 0 0 0 0 0
Output
8
5

2 人解决,3 人已尝试。

2 份提交通过,共有 3 份提交。

8.5 EMB 奖励。

创建: 16 年,9 月前.

修改: 6 年,10 月前.

最后提交: 1 年前.

来源: Stanford Local 2005

题目标签