Double Deck
문제
You are playing a new card game. In the game you have two decks of cards each consisting of cards labeled with an integer from to , inclusive. Also, each type of card appears precisely times in each deck.
The rules of the game are simple. You shuffle both decks and place them face up in front of you, so at each point in time you see the top card in each deck. If the top cards are the same you can take them both and get one point. Otherwise you must discard either card. Your goal is to get as many points as possible.
You have just finished playing a round of this game and you want to know what the maximum score was, knowing the layout of both decks.
입력
The first line of the input contains two integers and (). The second and third line of the input each contain integers (), describing the layout of the decks. The first number is the topmost card in the deck, is the second, and so on.
No integer in the second line and third line is repeated more than times per line.
출력
Print a single integer, the maximum possible score.
예제
예제 1
3 2 3 1 2 3 1 2 2 1 3 1 3 2
4
예제 2
5 3 2 3 4 5 3 5 2 2 4 3 5 1 1 1 4 5 2 3 2 3 1 4 5 1 4 5 1 4 3 2
8