Natjecanje
의견: 0
As you know, a kayaking competition is going on as we speak. Unfortunately strong winds have damaged a few kayaks, and the race starts in \(5\) minutes!
Fortunately, some teams have brought reserve kayaks. Since kayaks are bulky and hard to carry, teams are willing to lend kayaks to opposing teams if and only if they are starting immediately next to them. For example, team with the starting number \(4\) will lend its reserve kayak only to teams \(3\) and \(5\). Of course if some team did bring a reserve and its kayak was damaged, they will use it themselves and not lend it to anyone.
You as the organizer now need to know, what is the minimal number of teams that cannot start the race, not even in borrowed kayaks.
The first line of input contains three integers \(N\) (\(2 \le N \le 10\)), total number of teams, \(S\) (\(2 \le S \le N\)), number of teams with damaged kayaks, and \(R\) (\(2 \le R \le N\)), number of teams with reserve kayaks.
The second line contains exactly \(S\) numbers, the starting numbers of teams with damaged kayaks. The second line will not contain duplicates.
The third line contains exactly \(R\) numbers, the starting numbers of teams with reserve kayaks. The third line will not contain duplicates.
The first and only line of output should contain the smallest number of teams
that cannot start the competition.
SAMPLE TEST CASES
Input:
5 2 3
2 4
1 3 5
Input:
5 2 1
2 4
3
Output:
0
Output:
1
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Test 1 | 10점 | None |
Test 2 | 10점 | None |
Test 3 | 10점 | None |
Test 4 | 10점 | None |
Test 5 | 10점 | None |
Test 6 | 10점 | None |
Test 7 | 10점 | None |
Test 8 | 10점 | None |
Test 9 | 10점 | None |
Test 10 | 10점 | None |
5 2 3
2 4
1 3 505 2 1
2 4
31평가 및 의견
Natjecanje
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Natjecanje