Snjeguljica
의견: 0
\(7^{th}\) round (Croatian Olympiad in Informatics), April \(6^{th}\), 2013
In a small village beyond seven hills and seven seas, Snow White lives together with N dwarves who
spend all their time eating and playing League of Legends. Snow White wants to put an end to this, so
she has organized gym classes for them.
At the beginning of each class, the dwarves must stand in line, ordered by their height. For the
purposes of this task, assume that the dwarves have heights 1, 2, ..., N (each exactly once). However,
the dwarves' intelligence has somewhat deteriorated from the unhealthy lifestyle, so they are incapable
of ordering themselves by height. That's why Snow White helps them by issuing commands of the
form:
• 1 X Y -- dwarves at positions X and Y in the line must switch places.
She also checks their ordering by issuing queries of the form:
• 2 A B -- do dwarves with heights A, \(A+1\), ..., B (not necessarily in that order) occupy a
contiguous subsequence of the current line?
Help the doofus dwarves follow Snow White's instructions and respond to her queries.
In test data worth a total of 50 points, for all requests of type 2, the constraint \(B - A \le 50\) holds.
\(7^{th}\) round (Croatian Olympiad in Informatics), April \(6^{th}\), 2013
The first line of input contains the two positive integers N and M, the number of dwarves and the
number of Snow White's requests, respectively (\(2 \le N \le 200\,000\), \(2 \le M \le 200\,000\)).
The following line contains N spa\(ce-se\)parated positive integers from 1 to N, each exactly once,
representing the initial arrangement of the dwarves.
Each of the following M lines contains a single Snow White's request, of the form "1 X Y" (\(1 \le X\), Y ≤
N, \(X \ne Y\)) or “2 A B” (\(1 \le A \le B \le N\)), as described in the problem statement.
The output must contain one line for each request of type 2, containing the reply to the query, either
“YES” or “NO”.
5 3
2 4 1 3 5
2 2 5
1 3 1
2 2 5NO
YES7 7
4 7 3 5 1 2 6
2 1 7
1 3 7
2 4 6
2 4 7
2 1 4
1 1 4
2 1 4YES
NO
YES
NO
YES평가 및 의견
Snjeguljica
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Snjeguljica