Preparando MOJI

Triangles

2000ms 65536K

Description:

Little Petya likes to draw. He drew N red and M blue points on the plane in such a way that no three points lie on the same line. Now he wonders what is the number of distinct triangles with vertices in red points which do not contain any blue point inside.

Input:

The first line contains two non-negative integer numbers N and M (0 ≤ N ≤ 500, 0 ≤ M ≤ 500) — the number of red and blue points respectively. The following N lines contain two integer numbers each — coordinates of red points. The following M lines contain two integer numbers each — coordinates of blue points. All coordinates do not exceed 109 by absolute value.

Output:

Output one integer — the number of distinct triangles with vertices in red points which do not contain any blue point inside.

Sample Input:

4 1
0 0
10 0
10 10
5 4
2 1

Sample Output:

2

Sample Input:

5 5
5 10
6 1
8 6
-6 -7
7 -1
5 -1
10 -4
-10 -8
-10 5
-2 -8

Sample Output:

7

Informação

Codeforces

Provedor Codeforces

Código CF13D

Tags

dpgeometry

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:26:51

Relacionados

Nada ainda