Karte
의견: 0
1 \(s / 64\) \(MB / 120\) points
... Take these cards, \(I\) tell ya, \(my\) cousin from Sweden sent them when the hunger for war
was at its peak, and we stayed playing rummy in the trenches.
Daniel: “Are we playin’ rummy, eh?”
Domagoj: “Well ok then.”
Daniel: “Watch this now. You have a deck of \(N\) cards, where the \(i\) ^{th} card has a claim written
on it in the form of ‘At least \(a\) _{i} cards beneath this one contain a false claim.’ You have to
shuffle them so that exactly \(K\) cards contain a false claim.”
Domagoj: “You destroy me in this game every time, where did you get these cards, son?!”
Daniel: “Ah, my old man organizes card tournaments, so each day he gives me free cards,
ten bucks per deck.”
Your task is to help Domagoj solve Daniel’s task. Output the order in which Domagoj must
place the cards. It is also possible that this is a bad joke on Daniel’s part, and that there is no
possible order to place the cards in. In that case, outp\(ut -1\).
In test cases worth 30% of total points, it will hold \(N\) ≤ 16.
In additional test cases worth 40% of total points, it will hold \(N\) ≤ 2000.
1 \(s / 64\) \(MB / 120\) points
The first line contains integers \(N\) and \(K\) (1 ≤ \(N\) ≤ \(5 \cdot 10\) {5}{ }, 0 ≤ \(K\) ≤ \(N\) ).
The \(i\) {th}{ } of the following \(N\) lines contains an integer \(a\) {i}{ } (0 ≤ \(a\) {i}{ } ≤ \(5 \cdot 10\) {5}{ }).
If the required order does not exist, outp\(ut -1\).
Otherwise, in a single line, output \(N\) integers separated by spaces, the numbers on the cards
in the order from the top to the bottom of the deck. If there are multiple solutions, output
any.
4 2
1
2
2
3
2 3 1 2
5 3
2
1
3
0
3
3 3 0 1 2
6 4
0
2
5
2
0
1
-1
평가 및 의견
Karte
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Karte