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

Автор ko_osaga, история, 12 месяцев назад, По-английски

Hello!

I uploaded 2022-2023 Winter Petrozavodsk Camp, Day 4: KAIST+KOI Contest to the CF Gym.

Problems are from KAIST 12th ICPC Mock Competition, with the exception of A, B (KOI 2022 Finals), and C (hard to explain).

Problems are authored by:

I could be wrong, and I wish I am, but it feels like this is the last camp contest I will organize. Hope you had fun participating in the contest, as much as I enjoyed preparing the contest so much!

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

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

Nice problems, thank you for the authors.

How to solve G?

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

    The following strategy works: Remove $$$k-1$$$ edges from the tree, find the diameter for each $$$k$$$ component, and connect them with the deleted $$$k-1$$$ edges.

    Then you can run DP on tree, where the arguments are: (vertex $$$v$$$, number of completed component $$$k$$$ in subtree of $$$v$$$, how many endpoint of diameters are selected in the "open" component containing $$$v$$$). You can redeem an edge if you select $$$1$$$ diameter endpoint or decide to complete the current open component.

    $$$k$$$ can not exceed the number of vertices in subtree $$$v$$$, so it is well-known that this DP runs in $$$O(NK)$$$ time.

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

How did you solve problem I ?

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

    The author didn't provide a tutorial, and I could not solve it yet. As I know, the intended solution is not different from the paper on the internet.