

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
以下のような、無限に広い六角形のグリッドがあります。最初、全てのマスは白です。
ある六角形のマスは つの整数 を用いて と表されます。
マス は以下の つのマスと隣接します。
高橋くんは、 個のマス を黒く塗りました。
黒いマスがいくつの連結成分をなすか求めてください。
ただし、ある つの黒いマスが同じ連結成分に属するとは、この つの黒いマスの間をいくつかの隣接する黒いマスを辿って移動できることを指します。
制約
- 入力は全て整数
- は相異なる
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを整数として出力せよ。
入力例 1Copy
6 -1 -1 0 1 0 2 1 0 1 2 2 0
出力例 1Copy
3
高橋くんがマスを黒く塗った後、グリッドは下図の状態になります。
黒いマスがなす連結成分は以下の つです。
入力例 2Copy
4 5 0 4 1 -3 -4 -2 -5
出力例 2Copy
4
入力例 3Copy
5 2 1 2 -1 1 0 3 1 1 -1
出力例 3Copy
1
Score : points
Problem Statement
We have an infinite hexagonal grid shown below. Initially, all squares are white.
A hexagonal cell is represented as with two integers and .
Cell is adjacent to the following six cells:
Takahashi has painted cells black.
Find the number of connected components formed by the black cells.
Two black cells belong to the same connected component when one can travel between those two black cells by repeatedly moving to an adjacent black cell.
Constraints
- All values in the input are integers.
- The pairs are distinct.
Input
The input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1Copy
6 -1 -1 0 1 0 2 1 0 1 2 2 0
Sample Output 1Copy
3
After Takahashi paints cells black, the grid looks as shown below.
The black squares form the following three connected components:
Sample Input 2Copy
4 5 0 4 1 -3 -4 -2 -5
Sample Output 2Copy
4
Sample Input 3Copy
5 2 1 2 -1 1 0 3 1 1 -1
Sample Output 3Copy
1