COCI 2006/2007, Croatian Regional

Task SABOR

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.

Input

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 1000.

No two obstacles will be in the same cell and there will be no obstacle in cell (0, 0).

Output

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.

Sample Tests

Input

0 2

Output

9 4

Input

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

Output

10 16

Input

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

Output

2500099997 2500000000

All Submissions
Best Solutions


Point Value: 20
Time Limit: 2.00s
Memory Limit: 64M
Added: Jul 13, 2013

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...