Блог пользователя BERNARD

Автор BERNARD, 11 дней назад, По-английски

The international finals of the International Informatics Olympiad in Teams (IIOT) 2024 will be happening in the next couple of days.

It will be hosted by Syria as a hybrid event. There will be 20 participating teams from 10 different countries.

Contest format:

  • 7-10 problems (including subtasks)
  • 4 hours
  • 4 contestants and 2 computers per team

Authors of the problems used in this contest: Péter peti1234 Gyimesi, Áron mraron Noszály, Bernard BERNARD Brahimsha, Alessandro bortoz Bortolin, Zsolt birka0 Németh, Mihnea-Vicențiu MVB Bucă, Péter Csorba, and Gabriella Blénessy.

People who helped preparing the problems: davi_bart, Kaey, Virv, ApraCadabra, and stefdasca.

The practice round will be tomorrow on Friday, 10 May 2024, 17:30.

The main contest will happen on Saturday, 11 May 2024, 09:30.

For more info about the contest you can visit iio.team and iiot2024.sy.

You can find the problems of the previous editions here.

Wish the participating teams a good luck!

UPD: An unofficial list of participating teams could be found here: codeforces.com/blog/entry/129019

UPD2: The contest is happening right now, you can follow the live ranking at: https://gara.squadre.olinfo.it/ranking/ and it will become frozen during the last hour of the contest.

UPD3: The closing ceremony is now over. You can find the final results here.

UPD4: The editorial is out. You can find it here.

UPD5: An online mirror will be available here (live ranking is available here). It will start on Monday, 19 May 2024, 17:30 and will last for 30 hours.

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

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

Good luck to all participants! Hai Andrei!!

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

Good Luck For You And For Syrian National Teams :)

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

Great news! Wonderful job guys. Wish you the best of luck.

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

Looking forward to a great competition!

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

Goodluck everyone!

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

Can you tell me how to register

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

Live ranking?

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

Final scoreboard?

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

Is there a different way to solving triangles instead of $$$O(N \sqrt{N})$$$ with brutal casework?

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

    The way I solved it was pretty easy.

    Let's see how a bad triple looks like.

    a ---> b

    b ---> c

    a ---> c

    For one of the vertex, its in_degree will be 2.

    Let's consider that special vertex to count the number of bad triangles.

    d(i) =def= the in degree of vertex i

    total triangles = C(n, 3)

    bad triangles = sum{C(d(i), 2) | i = 1...n }

    Now we just need to update the number of bad triangles in order to find the number of good triangles.

    Here's how we update :

    let's assume the edge was (i ---> j)

    bad_triangles -= C(d(i), 2) + C(d(j), 2)

    d(i)++;

    d(j)--;

    bad_triangles += C(d(i), 2) + C(d(j), 2).

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

      yeah, pretty easy solution, nice

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

        Have you solved the problem Esoteirc Bovines?

        I had a solution of time complexity of O(N * lg A * lg A). Where I use a binary search on my answer and Trie to count the number of pairs that gave me xor value of less than equal to my mid.

        But unfortunately this solution was not working to give 100 points.

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

          Yeah, I managed to solve it, the best way to summarize it is to call it "Parallel binary search on a trie". Imagine you are doing binary for a certain $$$answer$$$. Then, while traversing the trie for the current number, the only thing that matters is whether the current bit in $$$answer$$$ is set or not. Having this in mind, we can do the following procedure (which is implicitly binary search) — greedily set the bits of $$$answer$$$ from the topmost to the bottommost. Imagine we are doing the query for every number in $$$A$$$ separately and keep a pointer, which is pointing to the node in the trie we are located currently. Let the node for the $$$i_{th}$$$ number be $$$u_i$$$. At first $$$u_i=root$$$ for every $$$i$$$. Then, by adding a bit, we will move the pointer for every $$$i$$$ to the child with the same bit as $$$a_i$$$, if we decide to put a bit $$$0$$$, or the opposite bit as $$$a_i$$$, if we decide to put a bit $$$1$$$. It's easy to see what bit you should put in $$$answer$$$, as you can easily tell whether the count of pairs with $$$xor \leq answer\ |\ 2^{bit}$$$ is less or more than $$$K$$$. Repeat this procedure $$$log_{\,2}\ a_i$$$ times and you will find the answer in $$$O(N\ log_{\,2}\ a_i)$$$.

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

    Here is a harder version of this problem 283E - Cow Tennis Tournament.

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

      It's funny that JOI Spring Camp 2024 had a problem which required the same observation — table tennis and I could not see it when I participated, could not see it now

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

Why the ranking is not opening now?

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

congrats for all teams who get medals

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

Will problems be available for upsolving any time soon ?