LOLBYECYALOL's blog

By LOLBYECYALOL, history, 5 years ago, In English

Link to Gym Contest [](https://codeforces.com/gym/101987)

Problem K: We had some ideas to model this problem as a graph problem and have edges between people (modeled as nodes) if they had conflicts. This approach is probably incorrect and I don't really have ideas, so help would be appreciated.

Problem G: Given that the agents arrived in order a, b, c, the probability of success should be P(t_b — t_a < w_a) * P(t_c — t_b < w_b) = w_a * w_b / S^2. Then we considered all permutations, which should give a probability of success of (w_a * w_b + w_a * w_c + w_b * w_c) / (3 * S^3). But this gave WA on Test 6. Any insights?

Thank you!

  • Vote: I like it
  • +1
  • Vote: I do not like it

»
5 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it
K
»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

In G, the probability of success isn't P(t_b — t_a < w_a) * P(t_c — t_b < w_b), because here you don't consider condition t_a < t_b < t_c