QOJ.ac

QOJ

Time Limit: 12 s Memory Limit: 256 MB Total points: 100 Difficulty: [show] Hackable ✓

#55. Sum of Euclidean Distance

統計

Given $n$ points $(x_i, y_i)$ on the plane, define

$$d(i,j)=\sqrt{(x_i - x_j)^2 + (y_i - y_j)^2}$$

Compute

$$\sum_{1 \le i < j \le n} d(i,j)$$

Input Format

The first line of the input contains an integer $n$.

The next $n$ lines each contain two integers $(x_i, y_i)$.

Output Format

Output a single real number — the answer. The absolute error must not exceed $10^{-4}$.

Sample Data

Sample Input

3
1 2
-1 3
0 -1

Sample Output

9.5214512632858295782294770691381

Sample Explanation

The answer is $d(1,2) + d(1,3) + d(2,3) = \sqrt{5} + \sqrt{10} + \sqrt{17}$.

Subtasks

For all test cases: $1 \le n \le 5 \times 10^5$, $-10^6 \le x_i, y_i \le 10^6$.

  • Subtask 1 (10 points): $n \le 3\,000 $
  • Subtask 2 (20 points): $n \le 40\,000 $
  • Subtask 3 (30 points): $n \le 10^5 $
  • Subtask 4 (20 points): $n \le 3 \times 10^5 $
  • Subtask 5 (20 points): No additional constraints.
About Issues

We understand that our problem archive is not perfect. If you find any issues with the problem, including the statement, scoring configuration, time/memory limits, test cases, etc.

You may use this form to submit an issue regarding the problem. A problem moderator will review your issue and proceed it properly.

STOP! Before you submit an issue, please READ the following guidelines:

  1. This is not a place to publish a discussion, editorial, or requests to debug your code. Your issue will only be visible by you and problem moderators. Other users will not be able to view or reply your issues.
  2. Do not submit duplicated issues. If you have already submitted one, please wait for an moderator to review it. Submitting multiple issues will not speed up the review process and might cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
  4. Be sure your issue is related to this problem. If you need to submit an issue regarding another problem, contest, category, etc., you should submit it to the corresponding page.

Active Issues 0

No issues in this category.

Closed/Resolved Issues 0

No issues in this category.