3849.Triangles

Time Limit: 1s Memory Limit: 256MB

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 Format(From the terminal/stdin)

The first line contains two non-negative integer numbers N and M (0 \le N \le 500, 0 \le M \le 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 Format(To the terminal/stdout)

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

Sample Input 1

Copy
4 1
0 0
10 0
10 10
5 4
2 1
 · \n
 · \n
  · \n
  ·  \n
 · \n
 · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
5 5
5 10
6 1
8 6
-6 -7
7 -1
5 -1
10 -4
-10 -8
-10 5
-2 -8
 · \n
 ·  \n
 · \n
 · \n
  ·  \n
 ·  \n
 ·  \n
  ·  \n
   ·  \n
   · \n
  ·  \n

Sample Output 2

Copy
7
 \n

Submit

请先 登录

© 2025 FAQs