5157: Very simple problem

内存限制:256 MB 时间限制:2 S
题面:传统 评测方式:文本比较 上传者:
提交:3 通过:1

题目描述

E. Very simple problem
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given a convex polygon. Count, please, the number of triangles that contain a given point in the plane and their vertices are the vertices of the polygon. It is guaranteed, that the point doesn't lie on the sides and the diagonals of the polygon.
Input
The first line contains integer n − the number of vertices of the polygon (3≤n≤100000). The polygon description is following: n lines containing coordinates of the vertices in clockwise order (integer x and y not greater than 109 by absolute value). It is guaranteed that the given polygon is nondegenerate and convex (no three points lie on the same line).
The next line contains integer t (1≤t≤20) − the number of points which you should count the answer for. It is followed by t lines with coordinates of the points (integer x and y not greater than 109 by absolute value).
Output
The output should contain t integer numbers, each on a separate line, where i-th number is the answer for the i-th point.
Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cin (also you may use %I64d).
Examples
Input
4
5 0
0 0
0 5
5 5
1
1 3
Output
2
Input
3
0 0
0 5
5 0
2
1 1
10 10
Output
1
0
Input
5
7 6
6 3
4 1
1 2
2 4
4
3 3
2 3
5 5
4 2
Output
5
3
3
4

输入样例 复制


输出样例 复制