A - Adjacent Squares Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

HH 行、横 WW 列のマス目があり、このうち上から ii 個目、左から jj 個目のマスを (i,j)(i,j) と呼びます。
このとき、マス (R,C)(R,C) に辺で隣接するマスの個数を求めてください。

ただし、ある 22 つのマス (a,b),(c,d)(a,b),(c,d) が辺で隣接するとは、 ac+bd=1|a-c|+|b-d|=1 (x|x|xx の絶対値とする) であることを言います。

制約

  • 入力は全て整数
  • 1RH101 \le R \le H \le 10
  • 1CW101 \le C \le W \le 10

入力

入力は以下の形式で標準入力から与えられる。

HH WW
RR CC

出力

答えを整数として出力せよ。


入力例 1Copy

Copy
3 4
2 2

出力例 1Copy

Copy
4

入出力例 1,2,31,2,3 に対する説明は、出力例 33 の下にまとめて示します。


入力例 2Copy

Copy
3 4
1 3

出力例 2Copy

Copy
3

入力例 3Copy

Copy
3 4
3 4

出力例 3Copy

Copy
2

H=3,W=4H=3,W=4 のとき、マス目は以下のようになります。

  • 入力例 11 について、マス (2,2)(2,2) に隣接するマスは 44 つです。
  • 入力例 22 について、マス (1,3)(1,3) に隣接するマスは 33 つです。
  • 入力例 33 について、マス (3,4)(3,4) に隣接するマスは 22 つです。


入力例 4Copy

Copy
1 10
1 5

出力例 4Copy

Copy
2

入力例 5Copy

Copy
8 1
8 1

出力例 5Copy

Copy
1

入力例 6Copy

Copy
1 1
1 1

出力例 6Copy

Copy
0

Score : 100100 points

Problem Statement

There is a grid with HH horizontal rows and WW vertical columns. Let (i,j)(i,j) denote the square at the ii-th row from the top and the jj-th column from the left.
Find the number of squares that share a side with Square (R,C)(R, C).

Here, two squares (a,b)(a,b) and (c,d)(c,d) are said to share a side if and only if ac+bd=1|a-c|+|b-d|=1 (where x|x| denotes the absolute value of xx).

Constraints

  • All values in input are integers.
  • 1RH101 \le R \le H \le 10
  • 1CW101 \le C \le W \le 10

Input

Input is given from Standard Input in the following format:

HH WW
RR CC

Output

Print the answer as an integer.


Sample Input 1Copy

Copy
3 4
2 2

Sample Output 1Copy

Copy
4

We will describe Sample Inputs/Outputs 1,21,2, and 33 at once below Sample Output 33.


Sample Input 2Copy

Copy
3 4
1 3

Sample Output 2Copy

Copy
3

Sample Input 3Copy

Copy
3 4
3 4

Sample Output 3Copy

Copy
2

When H=3H=3 and W=4W=4, the grid looks as follows.

  • For Sample Input 11, there are 44 squares adjacent to Square (2,2)(2,2).
  • For Sample Input 22, there are 33 squares adjacent to Square (1,3)(1,3).
  • For Sample Input 33, there are 22 squares adjacent to Square (3,4)(3,4).


Sample Input 4Copy

Copy
1 10
1 5

Sample Output 4Copy

Copy
2

Sample Input 5Copy

Copy
8 1
8 1

Sample Output 5Copy

Copy
1

Sample Input 6Copy

Copy
1 1
1 1

Sample Output 6Copy

Copy
0


2025-04-03 (Thu)
07:00:02 +00:00