Блог пользователя Nuu

Автор Nuu, 8 лет назад, По-английски

Hi guys, i'm trying solve this problem.

The resume is: given a set of points, print the smallest circle that cover all points.

I'm searching, but only find aproximate algorithms.

Somebody know a algoritm without aproximate?

Thanks for advice.

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
8 лет назад, скрыть # |
 
Проголосовать: нравится +10 Проголосовать: не нравится

Hi, I believe that this can help you out. :D

»
8 лет назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

Exact algorithms are described in Smallest-circle problem.

Best wishes

»
8 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

On a side note see this problem too . A slightly modified version of smallest enclosing circle : https://www.codechef.com/problems/CHEFCIRC

»
8 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

You can use nested ternary search though it is O(nlogC^2)