5-26 Population(35분) - 해결 예정
2300 단어 #각종 두 갈래 나무
It is always exciting to see people settling in a new continent. As the head of the population management office, you are supposed to know, at any time, how people are distributed in this continent.
The continent is divided into square regions, each has a center with integer coordinates (x,y). Hence all the people coming into that region are considered to be settled at the center position. Given the positions of the corners of a rectangle region, you are supposed to count the number of people living in that region.
Input Specification:
Each input file contains one test case. For each case, the character
I
in a line signals the coming in of new groups of people. In the following lines, each line contains three integers: X
, Y
, and N
, where X
and Y
(1 ≤ X
, Y
≤ 20000) are the coordinates of the region's center, and N
(1 ≤ N
≤ 10000) is the number of people coming in. The character
Q
in a line signals the query of population. The following lines each contains four numbers: Xmin, Xmax, Ymin, Ymax, where (Xmin,Ymin) and (Xmax,Ymax) are the integer coordinates of the lower left corner and the upper right corner of the rectangle, respectively. The character
E
signals the end of the test case. Output Specification:
For each
Q
case, print in a line the population in the given rectangle region. That is, you are supposed to count the number of people living at all the positions (x,y) such that Xmin≤x≤Xmax, and Ymin≤y≤Ymax. Sample Input:
I
8 20 1
4 5 1
10 11 1
12 10 1
18 14 1
Q
8 10 5 15
8 20 10 14
I
7 6 1
10 3 2
7 2 1
2 3 2
10 3 1
Q
2 20 2 20
E
Sample Output:
1
3
12
.작가: 진월
.단위: 절강대학
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rails Turbolinks를 페이지 단위로 비활성화하는 방법원래 Turobolinks란? Turbolinks는 링크를 생성하는 요소인 a 요소의 클릭을 후크로 하고, 이동한 페이지를 Ajax에서 가져옵니다. 그 후, 취득 페이지의 데이터가 천이 전의 페이지와 동일한 것이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.