#CODEFESTIVAL2017QUALAE. Modern Painting

Modern Painting

Score : 16001600 points

Problem Statement

Ringo got interested in modern art. He decided to draw a big picture on the board with N+2N+2 rows and M+2M+2 columns of squares constructed in the venue of CODE FESTIVAL 2017, using some people.

The square at the (i+1)(i+1)-th row and (j+1)(j+1)-th column in the board is represented by the pair of integers (i,j)(i,j). That is, the top-left square is (0,0)(0,0), and the bottom-right square is (N+1,M+1)(N+1,M+1). Initially, the squares (x,y)(x,y) satisfying 1xN1 \leq x \leq N and 1yM1 \leq y \leq M are painted white, and the other (outermost) squares are painted black.

Ringo arranged people at some of the outermost squares, facing inward. More specifically, the arrangement of people is represented by four strings AA, BB, CC and DD, as follows:

  • For each row except the top and bottom, if the ii-th character (1iN)(1 \leq i \leq N) in AA is 1, place a person facing right at the square (i,0)(i,0); otherwise, do nothing.
  • For each row except the top and bottom, if the ii-th character (1iN)(1 \leq i \leq N) in BB is 1, place a person facing left at the square (i,M+1)(i,M+1); otherwise, do nothing.
  • For each column except the leftmost and rightmost, if the ii-th character (1iM)(1 \leq i \leq M) in CC is 1, place a person facing down at the square (0,i)(0,i); otherwise, do nothing.
  • For each column except the leftmost and rightmost, if the ii-th character (1iM)(1 \leq i \leq M) in DD is 1, place a person facing up at the square (N+1,i)(N+1,i); otherwise, do nothing.

Each person has a sufficient amount of non-white paint. No two people have paint of the same color.

An example of an arrangement of people (For convenience, black squares are displayed in gray)

Ringo repeats the following sequence of operations until all people are dismissed from the venue.

  • Select a person who is still in the venue.
  • The selected person repeats the following action while the square in front of him/her is white: move one square forward, and paint the square he/she enters with his/her paint. When the square in front of him/her is not white, he/she stops doing the action.
  • The person is now dismissed from the venue.

An example of a way the board is painted

How many different states of the board can Ringo obtain at the end of the process? Find the count modulo 998244353998244353.

Two states of the board are considered different when there is a square painted in different colors.

Constraints

  • 1N,M1051 \leq N,M \leq 10^5
  • A=B=N|A|=|B|=N
  • C=D=M|C|=|D|=M
  • AA, BB, CC and DD consist of 0 and 1.

Input

Input is given from Standard Input in the following format:

NN MM

AA

BB

CC

DD

Output

Print the number of the different states of the board Ringo can obtain at the end of the process, modulo 998244353998244353.

2 2
10
01
10
01
6

There are six possible states as shown below.

2 2
11
11
11
11
32
3 4
111
111
1111
1111
1276
17 21
11001010101011101
11001010011010111
111010101110101111100
011010110110101000111
548356548

Be sure to find the count modulo 998244353998244353.

3 4
000
101
1111
0010
21
9 13
111100001
010101011
0000000000000
1010111111101
177856
23 30
01010010101010010001110
11010100100100101010101
000101001001010010101010101101
101001000100101001010010101000
734524988