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

Автор atcoder_official, история, 4 недели назад, По-английски

We will hold Tokio Marine & Nichido Fire Insurance Programming Contest 2024(AtCoder Beginner Contest 355).

We are looking forward to your participation!

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

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

Hoping to solve ABCD!!

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

There is a strange bug on the homepage of ABC355. If you're in English mode, when you enter the page, your browser begins playing music; after that, there will be some Japanese introduction to this company.

I found that the problem was caused by the video on the homepage (in Japanese mode), and the solution is to ban your browser from automatically playing media on the page. And I hope AtCoder can fix it. This is not a big problem, but sometimes it's annoying.

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

i think problem D is close to this problem

atcoder's solution

codeforces solution

the only difference is that codeforces's problem one interval should contains the other.

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

Misread B :)

Btw, how to solve F? Does it involve link-cut trees?

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

    this can be extended easily for F

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

    maybe yes , I just opened cf 5 minutes before the contest ended and saw a blog come up on MST query. I saw a GM explaining to use link cut trees. I started to read it and knew it was not of my cup of tea at least for my level.

    LMAO

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

    I solved it with basic Kruskal's algorithm, by looking at the constraints.

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

found very difficult.

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

My idea for problem-E using dp find the minimum no of moves to reach from L to R, then get the path. I'm getting WA.

Code

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

    i did not read your code, but you took into consideration right that we can also add and reduce values not in range L-R for example if 1-7, we can add 0-7 and sub 0-0?

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

SpeedCoder?

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

Anybody missed reading the constraint on weight in F and then waste time?

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

Cool.

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

Is there any other solution apart from link-cut tree? I didn't know about link-cut tree so did a brute force kind of solution.
I processed initial N-1 edges from lowest weight to highest weight. For each weight, I maintained connected component data using DSU.
Then for each additional edge of weight W to add, I checked if nodes U, V are in same component at DSU of weight W. If they are that means, an edge with weight <= W has connected components of these two nodes so the incoming edge can't replace any edge in MST.

If they are in different components, then that means, components to which U, V belong are connected by some higher weight edge and incoming edge can replace heavier edge in MST and update MST edge weight and then do union for U, V for all edge weights greater than or equal to W.

I got an AC with this approach but not sure if this approach is correct as everybody is mentioning link-cut tree. Can someone confirm if this is correct?

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

Why does this solution to D gives WA (https://atcoder.jp/contests/abc355/submissions/53878525)

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

For problem E, is there any intuitive understanding about the definition of S(x,y) = -S(y,x) when x > y.

I wonder how could someone come up with this definition and construct a graph.

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

When will the Editorial in English be available?