2149.Closing ceremony

Time Limit: 1s Memory Limit: 256MB

The closing ceremony of Squanch Code Cup is held in the big hall with n \times m seats, arranged in n rows, m seats in a row. Each seat has two coordinates (x,y) (1 \le x \le n, 1 \le y \le m).

There are two queues of people waiting to enter the hall: k people are standing at (0,0) and n \cdot m-k people are standing at (0,m+1). Each person should have a ticket for a specific seat. If person p at (x,y) has ticket for seat (xp,yp) then he should walk |x-xp|+|y-yp| to get to his seat.

Each person has a stamina- the maximum distance, that the person agrees to walk. You should find out if this is possible to distribute all n \cdot m tickets in such a way that each person has enough stamina to get to their seat.

Input Format(From the terminal/stdin)

The first line of input contains two integers n and m (1 \le n \cdot m \le 104)- the size of the hall.

The second line contains several integers. The first integer k (0 \le k \le n \cdot m)- the number of people at (0,0). The following k integers indicate stamina of each person there.

The third line also contains several integers. The first integer l (l=n \cdot m-k)- the number of people at (0,m+1). The following l integers indicate stamina of each person there.

The stamina of the person is a positive integer less that or equal to n+m.

Output Format(To the terminal/stdout)

If it is possible to distribute tickets between people in the described manner print "YES", otherwise print "NO".

Sample Input 1

Copy
2 2
3 3 3 2
1 3
 · \n
 · · · \n
 · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
2 2
3 2 3 3
1 2
 · \n
 · · · \n
 · \n

Sample Output 2

Copy
NO
  \n

Submit

请先 登录

© 2025 FAQs