A1316.[COCI-2006_2007-olympiad]#3 SABOR

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

The president of the political party in power is holding a conference in the party headquarters.
Politicians, members of the party, live in a two-dimensional grid, one member in each cell (except in cells containing obstacles). The headquarters are located in cell (0, 0). This is also where the president of the party lives.
Politicians make steps in one of the four directions (up, down, left, right), moving to one of the four adjacent cells in one step. They can't enter cells with obstacles. The conference will be attended by all party members that can reach headquarters in S steps or less. Each member coming to the conference will take the shortest route to headquarters (or any such route, if there is more than one).
The president has observed that politicians change their party affiliation with each step they take, becoming a member of the other party (there are only two parties on the political scene).
Write a program that determines how many politicians come to the conference as members of the party in power, and how many come as members of the opposing party.

输入格式

The first line contains two integers B and S (0 ≤ B ≤ 10 000, 1 ≤ S ≤ 10 000 000), the number of obstacles and the largest number of steps from the task description.
Each of the following B lines contains two integers, the coordinates of one obstacle. The absolute value of both coordinates will be less than 100
0.
No two obstacles will be in the same cell and there will be no obstacle in cell (0, 0).

输出格式

Output two integers on a single line separated by a space, the number of politicians that come to the conference as members of the party in power and the opposing party, respectively.

输入输出样例

  • 输入#1

    0 2 

    输出#1

    9 4
  • 输入#2

    4 5 
    -1 1 
    0 -1 
    0 1 
    1 0 

    输出#2

    10 16
  • 输入#3

    4 50000 
    1 1 
    -1 -1 
    1 -1 
    -1 1 

    输出#3

    2500099997 2500000000

说明/提示

首页