Kolone
의견: 0
When moving, ants form rows so that each ant except the first is behind another ant. It is not widely known what happens when two rows of ants moving in opposite directions run into each other in a passage too narrow for both rows to pass through. One theory says that, in that situation, the ants will jump over each other.
From the moment the rows meet, every second each ant jumps over (or gets jumped over, as they agree upon) the ant in front of it so that the two ants swap places, but only if the other ant is moving in the opposite direction. Find the order of the ants after \(T\) seconds.
The first line contains two integers \(N_1\) and \(N_2\), the numbers of ants in the first and second rows, respectively.
The next two rows contain the orders of ants in the first and second row (first to last). Each ant is uniquely determined by an uppercase letter of the English alphabet (this letter is unique between both rows).
The last line of input contains the integer \(T\) (\(0 \le T \le 50\)).
Output the order of the ants after \(T\) seconds on a single line. Our viewpoint is such that the first row of ants comes from our left side and the second one from our right side.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Subtask 1 | 40점 |
3 3
ABC
DEF
0CBADEF3 3
ABC
DEF
2CDBEAF3 4
JLA
CRUO
3CARLUJO평가 및 의견
Kolone
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Kolone