程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> numbers-Delta-wave

numbers-Delta-wave

編輯:編程解疑
Delta-wave

描述 :

A triangle field is numbered with successive integers in the way shown on the picture below.

The traveller needs to go from the cell with number M to the cell with number N. The traveller is able to enter the cell through cell edges only, he can not travel from cell to cell through vertices. The number of edges the traveller passes makes the length of the traveller’s route.

Write the program to determine the length of the shortest route connecting cells with numbers N and M.

輸入:

Input contains two integer numbers M and N in the range from 1 to 1000000000 separated with space(s).
輸出:

Output should contain the length of the shortest route.
樣例輸入:

6 12
樣例輸出:

3

最佳回答:


http://blog.csdn.net/h1021456873/article/details/50176759

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved