You have a lemon tree containing
Input Specification
The first line contains two integers,
The next line contains
The next
Output Specification
Output the number of pairs of lemons Tommy can eat.
Constraints
Subtask | Points | Additional constraints |
---|---|---|
No additional constraints. |
Sample Input 1
Copy
6 2
5 3 4 1 10 1
1 2
1 3
1 4
3 5
3 6
Sample Output 1
Copy
2
Explanation for Sample 1
The two pairs of lemons Tommy can eat are
Sample Input 2
Copy
5 3
10 3 2 4 5
1 2
1 3
2 4
3 5
Sample Output 2
Copy
2
Comments