COCI '20 Contest 6 #4 Geometrija

View as PDF

Submit solution


Points: 25 (partial)
Time limit: 1.0s
Memory limit: 512M

Problem types

You are given n points on the plane, such that no three points lie on the same line.

We say that line segments AB and CD cross if they share a point X different from the points A, B, C and D.

Let S be the set of all line segments between pairs of the given points. Find the number of segments in S that don't cross with any other segment in S.

Input Specification

The first line contains an integer n (3n1000), the number of points.

The following n lines contain integers xi and yi (109xi,yi109), the coordinates of the points.

Output Specification

Output the requested number of segments.

Constraints

SubtaskPointsConstraints
1203n40
2303n200
360No additional constraints.

Sample Input 1

Copy
4
1 1
-1 1
-1 -1
1 -1

Sample Output 1

Copy
4

Sample Input 2

Copy
4
-1 -1
1 -1
0 1
0 0

Sample Output 2

Copy
6

Explanation for Sample Output 1 and 2


Comments

There are no comments at the moment.