#5057. Problem 2. Cycle Correspondence

0

Problem 2. Cycle Correspondence

Problem 2. Cycle Correspondence

USACO 2023 December Contest, Silver

Farmer John has NN barns (3N51053\le N\le 5\cdot 10^5), of which KK (3KN3\le K\le N) distinct pairs of barns are connected.

First, Annabelle assigns each barn a distinct integer label in the range [1,N][1,N], and observes that the barns with labels a1,,aKa_1,\dots,a_K are connected in a cycle, in that order. That is, barns aia_i and ai+1a_{i+1} are connected for all 1i<K1\le i<K, and barns aKa_K and a1a_1 are also connected. All aia_i are distinct.

Next, Bessie also assigns each barn a distinct integer label in the range [1,N][1,N] and observes that the barns with labels b1,,bKb_1,\dots,b_K are connected in a cycle, in that order. All bib_i are distinct.

Some (possibly none or all) barns are assigned the same label by Annabelle and Bessie. Compute the maximum possible number of barns that are assigned the same label by Annabelle and Bessie.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains NN and KK.

The next line contains a1,,aKa_1,\dots, a_K.

The next line contains b1,,bKb_1,\dots, b_K.

OUTPUT FORMAT (print output to the terminal / stdout):

The maximum number of fixed points.

SAMPLE INPUT:


6 3
1 2 3
2 3 1

SAMPLE OUTPUT:


6

Annabelle and Bessie could have assigned the same label to every barn.

SAMPLE INPUT:


6 3
1 2 3
4 5 6

SAMPLE OUTPUT:


0

Annabelle and Bessie could not have assigned the same label to any barn.

SAMPLE INPUT:


6 4
1 2 3 4
4 3 2 5

SAMPLE OUTPUT:


4

Annabelle and Bessie could have assigned labels 2,3,4,62,3,4,6 to the same barns.

SCORING: Inputs 4-5: N8N \le 8Inputs 6-8: N5000N \le 5000Inputs 9-15: No additional constraints

Problem credits: Benjamin Qi