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

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

Hi, I'm stuck in such a problem who ask's for the given set G of points in a plane, for each point i, how many points s are less than an integer D close to point i.

My fist and naive approach was an O(N^2) solution looking for the distance from all points to points, which didn't got TLE.

What is the better approach ?

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

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

Please, give link to problem.

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

You can use convex hull which garanted O(NlogN) time