Polish version    English version  
  History of OI -> XIII OI 2005/2006 -> Problems


 News
 About Olympic
 History of OI
XVII OI 2009/2010
XVI OI 2008/2009
XV OI 2007/2008
XIV OI 2006/2007
XIII OI 2005/2006
Schedule
Problems
Stage III - results
Stage II - results
Stage I - results
Stage II
Stage III
Regulations
For contestants
Helpful resources
XII OI 2004/2005
XI OI 2003/2004
X OI 2002/2003
IX OI 2001/2002
VIII OI 2000/2001
VII OI 1999/2000
VI OI 1998/1999
V OI 1997/1998
IV OI 1996/1997
III OI 1995/1996
II OI 1994/1995
I OI 1993/1994
 OI books
 National team
 Olympic camps
 Photo gallery
 Links
 SIO
 MAIN

Task: The Disks


Memory limit: 32MB

For his birthday present little Johnny has recieved from his parents a new plaything which consists of a tube and a set of disks. The aforementioned tube is of unusual shape. Namely, it is made of a certain number of cylinders (of equal height) with apertures of different diameters carved coaxially through them. The tube is closed at the bottom, open at the top. An exemplary tube consisting of cylinders whose apertures have the diameters: 5cm, 6cm, 4cm, 3cm, 6cm, 2cm and 3cm is presented in the image bellow.

\includegraphics{kra1}% WIDTH=277 HEIGHT=162
The disks in Johnny's plaything are cylinders of different diameters and height equal to those forming the tube.

Johnny has invented a following game: having a certain set of disks at his disposal, he seeks to find what depth the last of them would stop at, assuming that they are being thrown into the centre of the tube. If, for instance, we were to throw disks of consecutive diamaters: 3cm, 2cm and 5cm, we would obtain the following situation:

\includegraphics{kra2}% WIDTH=277 HEIGHT=162
As you can see, upon being thrown in, every disk falls until it gets stuck (which means that it lies atop a cylinder, aperture of which has a diameter smaller than the diameter of the disk) or it is stopped by an obstacle: the bottom of the tube or another disk, which has already stopped.

The game being difficult, Johnny constantly asks his parents for help. As Johnny's parents do not like such intelectual games, they have asked you - an acquaintance of theirs and a programmer - to write a programme which will provide them with answers to Johnny's questions.

Task

Write a programme which:
  • reads the description of the tube and the disks which Johnny will throw into it from the standard input,
  • computes the depth which the last disk thrown by Johnny stops at,
  • writes the outcome to the standard output.

Input

The first line of the standard input contains two integers n and m ( 1$ \le$% WIDTH=16 HEIGHT=30 n, m$ \le$% WIDTH=16 HEIGHT=30 300 000) separated by a single space and denoting the height of Johnny's tube (the number of cylinders it comprises) and the number of disks Johnny intends to throw into it, respectively. The second line of the standard input contains n integers r1, r2,...,rn ( 1$ \le$% WIDTH=16 HEIGHT=30 ri$ \le$% WIDTH=16 HEIGHT=30 1 000 000 000 for 1$ \le$% WIDTH=16 HEIGHT=30 i$ \le$% WIDTH=16 HEIGHT=30 n) separated by single spaces and denoting the diameters of the apertures carved through the consecutive cylinders (in top-down order), which the tube consists of. The third line contains m integers k1, k2,..., km ( 1$ \le$% WIDTH=16 HEIGHT=30 kj$ \le$% WIDTH=16 HEIGHT=30 1 000 000 000 for 1$ \le$% WIDTH=16 HEIGHT=30 j$ \le$% WIDTH=16 HEIGHT=30 m) separated by single spaces and denoting the diameters of consecutive disks which Johnny intends to throw into the tube.

Output

The first and only line of the standard output should contain a single integer denoting the depth which the last disk stops at. Should the disk not fall into the tube at all, the answer should be 0.

Example

For the input data:
7 3
5 6 4 3 6 2 3
3 2 5
the correct outcome is:
2



Print friendly version