• [1420] Geometric Sequence

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • A sequence of integers is called a geometric sequence if the ratio of consecutive numbers is constant.
    For example, (3,6,12,24) is a geometric sequence (each term is equal to twice the previous number).

    Now, with such a sequence, we will shuffle it and remove some of the elements.
    Given the result of such a transformation, try to recover the "geometric ratio" of the original sequence, i.e. the ratio of consecutive numbers.

    If there are multiple possible ratios, output the one with the greatest absolute value. If there is still a tie, output the positive one.
    If there is no such sequence, output 0.
  • 输入
  • The first line of input contains a single integer, 2 ≤ N ≤ 100,000, the number of integers in the transformed sequence.
    Following this will be N lines, each containing a single integer of the transformed sequence (each element will be less than or equal to 1018 in absolute value, and no element will be zero).
  • 输出
  • The ratio of the original sequence (if one exists). The relative error of the answer must be within 10-9. That is, (abs(answer - expected) / expected < 10-9).
  • 样例输入
  • 3
    1
    3
    27
    
  • 样例输出
  • 3
    
  • 提示
  • The original sequence could have been (1,3,9,27,...) or (...,27,9,3,1); the former has the greater ratio (3). 
  • 来源
  • 0 0
  • 操作

显示春菜