Editorial of Educational Codeforces Round 4

Revision en3, by Edvard, 2015-12-26 05:05:37

612A - The Text Splitting

Let's fix the number a of strings of length p and the number b of strings of length q. If a·p + b·q = n, we can build the answer by splitting the string s to a parts of length p and b parts of length q, in order from left to right. If we can't find any good pair a, b then the answer doesn't exist. Of course this problem can be solved in linear time, but the constraints are small, so you don't need linear solution.

Complexity: O(n2).

612B - HDD is Outdated Technology

You are given the permutation f. Let's build another permutation p in the following way: pfi = i. So the permutation p defines the number of sector by the number of fragment. The permutation p is called inverse permutation to f and denoted f - 1. Now the answer to problem is .

Complexity: O(n).

612C - Replace To Make Regular Bracket Sequence

If we forget about bracket kinds the string s should be RBS, otherwise answer doesn't exist. If the answer exists for each opening bracket matches to exactly one closing bracket and vice verse. Easy to see that if two matching brackets have the same kind we don't need to replace them. In other case we can change the kind of closing bracket to the kind of opening. So we can build some answer. Obviously the answer is minimal, because the problems for some pair of matching pairs are independent and can be solved separately.

The only technical problem is to find the matching pairs. To do that we should store the stack of opening brackets. Let's iterate from left to right in s and if the bracket is opening, we should simply add it to stack. Now if the bracket is closing there are three cases: 1) the stack is empty; 2) at the top of the stack is the opening bracket with the same kind as the current closing; 3) the kind of the opening bracket differs from the kind of the closing bracket. In the first case answer doesn't exist, in the second case we should simply remove the opening bracket from the stack and in the third case we should remove the opening bracket from the stack and increase the answer by one.

Complexity: O(n).

612D - The Union of k-Segments

Let's create two events for each segment li is the time of segment opening and ri is the time of segment closing. Let's sort all events by time, if the times are equal let's sort them with prior to segment opening. In C++ it can be done with sorting by standard comparator of vector<pair<int, int>> events, where each element of events is the pair with event time and event type ( - 1 for opening and  + 1 for closing).

Let's iterate over events and maintain the balance. To do that we should simply decrease the balance by the value of event type. Now if the balance value equals k and before updating it was k - 1 then we are in the left end of the segment from answer. If the balance equals to k - 1 and before updating it was k then we are in the right end of the segment from answer. Let's simply add segment [left, right] to answer. So now we have disjoint set of segments contains all satisfied points in order from left to right. Obviously it's the answer to the problem.

Complexity: O(nlogn).

612E - Square Root of Permutation

612F - Simba on the Circle

Tags education round 3, editorial

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en8 English Edvard 2015-12-26 05:53:25 53
en7 English Edvard 2015-12-26 05:48:46 72
en6 English Edvard 2015-12-26 05:41:45 31
en5 English Edvard 2015-12-26 05:35:55 1853
ru7 Russian Edvard 2015-12-26 05:24:25 5 Мелкая правка: 'i=min_j (z[j] + d_{i, j})$, по в' -> 'i=min_j (z_j + d_{ij})$, по в'
en4 English Edvard 2015-12-26 05:16:39 787
ru6 Russian Edvard 2015-12-26 05:16:14 32
en3 English Edvard 2015-12-26 05:05:37 1032
en2 English Edvard 2015-12-26 04:57:17 1253
ru5 Russian Edvard 2015-12-26 04:56:48 136
en1 English Edvard 2015-12-25 22:41:53 982 Initial revision for English translation
ru4 Russian Edvard 2015-12-25 22:29:23 1 Мелкая правка: 'v+od_{vi}). Теперь л' -> 'v+od_{vi})$. Теперь л'
ru3 Russian Edvard 2015-12-25 22:28:49 1883 Мелкая правка: ' $z2_i=min\limits_j (z[j] +' -
ru2 Russian Edvard 2015-12-25 20:01:20 789 (опубликовано)
ru1 Russian Edvard 2015-12-25 17:59:53 3576 Первая редакция (сохранено в черновиках)