Автор RussianCodeCup, 7 лет назад, По-русски

Всем привет!

10 сентября 2017 года, в 13:00 по московскому времени состоится финал Russian Code Cup 2017! Раунд продлится 3 часа. 55 участников финального раунда сразятся за призы, и мы все с нетерпением ждем возможности поболеть за них на сайте http://russiancodecup.ru.

Ну а для всех остальных участников мы подготовили сюрприз: если вы хотите попробовать свои силы в решении задач, приходите на codeforces.com после финала, в 16:35 по московскому времени состоится раунд по задачам RCC 2017, открытый для всех желающих.

Несколько уточнений:

  • Раунд пройдет по правилам ACM;
  • Раунд будет нерейтинговым;
  • Сложность задач будет близка к Div 1 раунду;
  • Мы просим участников финала после окончания официального соревнования воздержаться от публикации и обсуждения задач до окончания раунда-трансляции, и, разумеется, в нем не участвовать;
  • Производительность инвокеров сайта RCC и CF различная, "у меня прошло/не прошло решение на CF, а на RCC было по-другому" не может быть поводом для апелляции.

UPD Официальное соревнование завершено, поздравляем победителей! Всем остальным удачи на раунде.

UPD2 Разбор задач

  • Проголосовать: нравится
  • +113
  • Проголосовать: не нравится

»
7 лет назад, # |
Rev. 4   Проголосовать: нравится +20 Проголосовать: не нравится

The online mirror probably coincides with TCO17 Wildcard Round, right?
According to this calendar TCO17 Wildcard and also rated "Fun SRM" is held in 19:00 MSK to 22:00 MSK, and RCC online mirror is held in 16:35 MSK to 19:35 MSK.

»
7 лет назад, # |
  Проголосовать: нравится +65 Проголосовать: не нравится

The title says “Teams Allowed”. But how can I register as a team member?

»
7 лет назад, # |
  Проголосовать: нравится +74 Проголосовать: не нравится

rated or unrated ?

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится +10 Проголосовать: не нравится

Во сколько начнётся?

UPD: ок, письмо "ошибка в рассылке" попало в другую папку гмейла, и я его не сразу заметил

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    А мне оно не пришло. Вот я встал к 12, поел, вижу -- еще целый час! Так я проспал начало. :)

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится -48 Проголосовать: не нравится

.

»
7 лет назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

Сложность задач будет близка к Div 1 раунду;

Близка снизу или сверху?)

»
7 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Round is unrated, BUT you could find possible rating change here (after round starts)

Extensions for browsers:

Have fun & high rating :)

Are you first time hear about CF-Predictor? You could read about it in my blog

======================================================================

Раунд не рейтинговый, НО посмотреть возможное изменение рейтинга можно тут (после начала раунда)

Расширения для браузеров:

Удачи и высокого рейтинга :)

Впервые слышите про CF-Predictor? Можете прочитать про него мой блог

»
7 лет назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

Additionally to the official standings, there are contestant list, standings with TC and CF nicknames, text translation of contest flow on English and on Russian available.

»
7 лет назад, # |
  Проголосовать: нравится +34 Проголосовать: не нравится

rip judge

»
7 лет назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

What does Judgment Failed means ??

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I answered the first problem then i submitted it then i get (Judgement Failed) what does this mean

»
7 лет назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

I answered the first problem then i submitted it then i get (Judgement Failed) what does this mean

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Judgement Failed??

»
7 лет назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится

Now I understood why it was recommeded for Div 1 round! Because of its Statement

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Was E maximum interval tree?

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I think I have a solution based on that idea, but it got TLE despite being N log N. I think my function to determine whether the intersection point is inside the circle is too slow (right after the contest I realised a much simpler way to test it, but during the contest I had to use a bignum class to avoid overflows).

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I used a bit different idea. Every satelite covers the area, but also the arc of the circle. So i made interval tree for the arc coverage and checked if min(i, j intersection) <=2. It got TLE :(

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        I solved E in a robust way, maintaining points with (angle OAP, angle OBP) The common covered area by (A, B) and (C, D) is (min(A, C), min(B, D)). To cope with query 3, I checked if all points other than i, j don't have (P, Q) such that P >= min(A, C) and Q >= min(B, D) and the point is not in the circle. This can be done with ordinary segment trees.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I sort the points by angle made at A and at B, and rank them. Then I place them in a new coordinate system, where x1 < x2 means A-P1-P2 is counter-clockwise and y1 < y2 means B-P1-P2 is clockwise. Now satellites P1 and P2 can be connected if there is an intersection outside the planet, and there is no other satellite (x, y) such that x <= max(x1, x2) and y <= max(y1, y2) in this other coordinate system. That I do by keeping the smallest y coordinates for each x coordinate (using a set for each x coordinate), and then maintaining a segment tree over those.

  • »
    »
    7 лет назад, # ^ |
    Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

    The intersection of two satellite coverage area can be formed as a satellite-like coverage area.

    If this satellite-like coverage area is covered by other satellites, there will exists at least one satellite coverage area which contains this satellite-like coverage area (instead of some union).

    Considering the projections of coverage areas on the half-circle border (as intervals), the query is equal to determine whether there exists one interval (except i-th and j-th) which is able to cover the intersection of i-th interval and j-th interval.

    When I finally realized that, I tried to modify my wrong solution but actually I didn't have enough time :(

    Our recommended solution is to sort all the intervals by their left endpoints, and use a segment tree to maintain the maximum right endpoints, which can be done in .

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

What was the solution idea for problem B ?

»
7 лет назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

How to solve B? Is it some kind of greedy? (Just a wild guess since it looked NP-complete)

  • »
    »
    7 лет назад, # ^ |
    Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится

    Yes, greedy by decreasing of length.

    If we sort all prefixes by decreasing of length, we can take them greedy. And with hashes we can check if we can pick current prefix.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      why & how would the sorting work ? could you please explain ?

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится +4 Проголосовать: не нравится

        Let's look at the longest string at the moment. If we will take it to the answer, we block only one string — the taken one without first letter, and because from these two strings we can take only one, our move is not worse, than any else. Thus, if at each step we take the longest possible string, then we get the best answer.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I tried something different. I'm pretty sure my idea is valid but my implementation is wrong. This is my idea: first of all, we will use rolling hashing to quickly compare strings. We say string A is a child of string B if the first letter of A can be removed to get B. We construct a tree or many trees with all the prefixes. Now the problem is equivalent to the most nodes you can "color" so that no two adjacent nodes are both "colored". You can solve with two dp arrays. dp1[i] will be the most you can color in the subtree of i while coloring i. dp2[i] will be the most you can color in the subtree of i without coloring i. We get the recursive formula that dp1[i] = 1 + sum of dp2 of children and dp2[i] = sum of max(dp1, dp2) of children.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    1. build the trie

    2. build another graph G where the vertices are the nodes of the trie (all possible preffixes) and add an edge from v to u if string v can be obtained from u by removing the first letter

    3. G is a forest

    4. now the problem can be solved with dp

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I thought exactly the same till step 3,and couldn't do more, can you explain step 4 (dp).

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        maximum independent set in trees, f[u][b]=maximum number of vertices we can take from subtree u, b can be 0 or 1 indicating if we can pick or not u

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I solved with DP, but there was people that solved in 11 minutes, maybe there is an easier solution. My idea, lets consider every prefix of all strings and build an graph, where exists an edge between the prefix and the prefix without the first letter. It will be a forest. No two adjacent vertex can be at the set and just the vertexes that are prefix can be choose. Since you have to find maximun, you can apply dp.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится +18 Проголосовать: не нравится

    Am I the only one who used Aho-Corasick for B? Using suffix links, we can build a forest and the problem reduces to finding maximum independent set in a forest, which is straightforward.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I don't think Aho-Corasick is exactly what you need: you want to link each node to the suffix formed by removing exactly the first character (or no link, if no such node exists), whereas Aho-Corasick will link to the longest suffix that does exist.

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Yes, it's an overkill but I can add a check if the longest suffix is obtained by removing exactly 1 character.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится +8 Проголосовать: не нравится

      @flashmt: No

      @bmerry: Easy enough to add the "only one level up" check :)

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

What was the solution idea for problem B ?

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to solve A??

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to solve D?

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    centroid decomposition and dp f[u][v]=maximum beauty of subtree u if vertices in the path u->v are in a cycle

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      What are u, v in this case? I assume it can't be all vertices in the tree, since that would be O(n^2).

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        when doing centroid decomposition the sum of sizes of roots is nlogn

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I've started implementing a solution using centroid decomposition and think I understand where u and v come in: they're one of the paths, clipped to the current tree — hence either u or v is the exit to some ancestor root, which constrains the search space.

      However, I've still having some trouble. Let's say I have a tree rooted at r with two subtrees S and T, and I want to compute f[u][v] for some u, v both located in S. I then compute f[u][v] within S and I compute the maximum beauty in T. But then I also need to consider adding new edges whose paths pass through r (from S to T). This means I now need to consider two constraints in S: u->v must be untouched, but so must the part of the new path that lies within S.

      Any tips? I've not used centroid decomposition much so I may be missing something standard.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Maybe a DP on the tree, using some data-struct like segment tree to obtain the sum of a path. The answer of the subtree of node x is ans[x] = max(sans[x]. max{i.c + sans[x] + sum(x,i.a) + sum(x,i.b)}), for i in V[x], V[x] is the set of input triple<a,b,c> where lca(a,b)=x, sans[x] = the sum ans of x's children, sum(a,b) if the sum of value[x] for each x on the path(a,b), value[x] = sans[x] — ans[x]

  • »
    »
    7 лет назад, # ^ |
    Rev. 2   Проголосовать: нравится +10 Проголосовать: не нравится

    dp[v][0] — maximum beauty of substree when v is not in any cycle

    dp[v][1] — maximum beauty of substree when v is in cycle

    We have u, v, cost. Let's try to add cycle at lca(u, v). In order to get right sum we need to count on path from u, v to lca the sum of beauties not including this path. It can be done by calculating sparse table the same way we do with lca. O(nlogn)

  • »
    »
    7 лет назад, # ^ |
    Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

    let dpnode be the maximum sum of edges you can add such that those edges belong in this subtree and the subtree is still a cactus.
    let
    Then if you do not make any cycle pass though node then dpnode = sumnode. otherwise if you take the edge (u, v) , lca(u, v) = node and make it's cycle pass through node , then dpnode is .
    All you need to do is tree sum updates and queries which can be done by building a bit on dfs start end times easily in NlogN.

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Дорешку плиз включите.

Видимо из-за 30250521 не включается.

»
7 лет назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

Where can I resubmit my code of this contest? emm... I think I will get AC this time.

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

How to solve A?

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Brute force, since all b[i] <= 1e6, you can try for each i in {1..1000000} to loop through the array a and find for each a[j], if i+a[j] is visited before, if not add that i to the answer list, and mark i+a[j] for all a[j] as visited, you need to break when the answer list equal to n.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится +3 Проголосовать: не нравится
    1. Check that all numbers A[i] are different.
    2. Generate random number from 1 to 106 (define it x)
    3. Check x. (if it`s bad — repeat 2)
    4. Add to set all pairs A[i] + x.
    5. Repeat 2,3,4 N times
»
7 лет назад, # |
  Проголосовать: нравится +41 Проголосовать: не нравится

Five years ago I wrote C.

How to solve F? It looked like the most interesting problem.

»
7 лет назад, # |
  Проголосовать: нравится +43 Проголосовать: не нравится

Can option to upsolve problems on CF be enabled?

»
7 лет назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

Can't submit solution now. When will be it in archive ?

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Кто еще сдал задачу А генерируя случайные числа от 1 до 106?

»
7 лет назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится

Please enable upsolving.

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

why unrated....