Editorial of Educational Codeforces Round 2
Difference between en3 and en4, changed 12 character(s)
[problem:600A]↵

This is a technical problem. You should do exactly what is written in problem statement.↵

[problem:600B]↵

Let's sort all numbers in a. Now let's iterate over elements of $b$ and for element $b_j$ find the index of lowest number that is greater than $b_j$. We can do that using binary search. That index will be the answer for value $b_j$.↵

Complexity: $O(n logn)$.↵

[problem:600C]↵

Let's denote $cnt_c$ — the number of occurences of symbol $c$. Let's consider odd values $cnt_c$. Palindrome can not contain more than one symbol $c$ with odd $cnt_c$. Let's denote symbols with odd $cnt_c$ as $a_1, a_2 ... a_k$ (in alphabetical order). Let's replace any one of symbols $a_k$ with symbol $a_1$, $a_{k-1}$ with $a_2$ and so on until the middle of $a$. Now we have no more than one odd symbol. If we have some let's place it in the middle of the answer. First half of answer will contain $\frac{cnt_c}{2}$ occurences of symbol $c$ in alphabetical order. The second half will contain the same symbols in reverse order. For example for string $s=aabcd$ at first we will replace $d$ by $b, than place symbol $c$ in the middle and after permuting the symbols we got $abcba$. Easy to see that it's the optimal solution.↵

Compexity: $O(n)$.↵

[problem:600D]↵

If the circles don't intersect than the answer is $0$. We can check that case with only integer calculations (simply by comparing the square of distance between centers with square of the sum of radiuses). If one of the circles is fully in other then the answer is the square of the smaller one. We can check this case also with only integer calculations (simply by comparing the square of distance between centers with square of the difference of radiuses).↵

So now let's consider the general case. The answer will be equal to the sum of two circular segments. Let's consider the triangle with apexes in centers if circles and in some intersecting point of the circles. In that triangle we know all three sides so we can compute the angle of the circular segment. So we can compute the square of circular sector. And the only thing that we should do now is to subtract the square of triangle with apexes in the center of circle and in the intersecting points of circles. We can do that by computing the half of absolute value of cross product. So we have the following formulas:↵

$\alpha = arccos\left(\frac{r_2^2+d^2-r_1^2}{2r_2d}\right), s=\alpha r_2^2, t=r_2^2 \sin\alpha \cos\alpha, ans_1=s-t$,↵

where $d$ is the distance between centers of the circles. And also we should do the same thing with second circle by replacing of indices $1\leftrightarrow2$.↵

![ ](http://cs631825.vk.me/v631825056/1cc1/sM_EMXVGFn4.jpg)↵

Complexity: $O(1)$.↵

[problem:600E]↵

The name of this problem is anagram for 
``''Small to large''. There is a reason for that :-) The author solution for this problem uses the classic technique for computing sets in tree. The simple solution is the following: let's find for each vertex $v$ the ``''map<int, int>'' &mdash; the number of occurences for each colour, ``''set<pair<int, int>>'' &mdash; pairs the number of occurences and the colour, and the number $sum$ &mdash; the sum of most frequent colours in subtree of $v$. To find that firstly we should find the same thing for all childs of $v$ and then merge them to one. These solution is correct but too slow (it works in $O(n^{2} logn)$ time). Let's improve that solution: every time when we want to merge two $map$-s $a$ and $b$ let's merge the smaller one to larger simply by iterating over all elements of the smaller one (this is the ``Small to large''). Let's consider some vertex $v$: every time when vertex $v$ will be moved from one $map$ to another the size of the new map will be at least two times larger. So each vertex can be moved not over than $logn$ times. Each moving can be done in $O(logn)$ time. If we accumulate that values by all vertices then we get the complexity $O(n log^{2}n)$.↵

I saw the solutions that differs from author's but this technique can be used in a lot of other problems.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en7 English Edvard 2015-12-20 01:06:01 7190 Reverted to en5
en6 English Edvard 2015-12-20 01:04:40 7190 Tiny change: 'oks of $i$th genre. ' -
ru12 Russian Edvard 2015-11-28 02:56:22 58
en5 English Edvard 2015-11-28 02:55:31 1179
en4 English Edvard 2015-11-28 01:56:48 12 Tiny change: 'l to large``. There is' -> 'l to large''. There is'
en3 English Edvard 2015-11-28 01:56:19 14 Tiny change: 'l to large``. There is' -> 'l to large''. There is'
en2 English Edvard 2015-11-28 01:33:31 1343
en1 English Edvard 2015-11-28 00:38:09 2786 Initial revision for English translation
ru11 Russian Edvard 2015-11-27 23:53:58 9
ru10 Russian Edvard 2015-11-27 23:50:23 9 Мелкая правка: 'чение $d$ —- наибольш' -> 'чение $d$ --- наибольш'
ru9 Russian Edvard 2015-11-27 23:29:29 1188
ru8 Russian Edvard 2015-11-27 20:04:30 63
ru7 Russian Edvard 2015-11-27 20:03:57 104 (опубликовано)
ru6 Russian Edvard 2015-11-27 19:54:54 51
ru5 Russian Edvard 2015-11-27 19:53:17 24
ru4 Russian Edvard 2015-11-27 19:52:37 197 Мелкая правка: ' to large`). Давайт' -
ru3 Russian Edvard 2015-11-27 19:48:36 1406
ru2 Russian Edvard 2015-11-27 19:25:41 1280
ru1 Russian Edvard 2015-11-27 19:05:18 1827 Первая редакция (сохранено в черновиках)