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

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

I couldn't find a discussion blog for this contest so here's one.

Does anyone know how to solve Ex?

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

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

For problem D, my solution with Binary Search + BFS works fine except for 01_random_03.txt. Any hint ?

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

    Did you binary search till 4e9 becauese I was facing same verdict till i realized cost could be 4e9.

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

      My solution also fails on the same test case. Is there anyone who could look into my code.

      code

      I have used #define int long long

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

        Overflow. P can be 10^9 10^11 * 10^9 = 10^20 which is too big even for long long.

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

      explain your solution

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

    With 4e9 it works fine. thanks.

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

Submission In problem G why picking the longest transition (by prefix function) works?

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

    Greedily removing the longest suffix of T that is a prefix of S seems to work as well.

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

      Yeah did so after the contest and it passed but I am unable to prove it why does it work.

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

        Because ans[i]<=ans[j] for i<=j because you can always construct a solution for index i from the constructive words of solution j by either deleting some characters of the last word (giving the same ans) or deleting some words then some characters (giving smaller ans).

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

D was a nice variation of Floyd Warshall algorithm

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

I have failed on F because of a little mistake in my BFS :)

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

Problem C? Can anyone mention the approach? Thanks!

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

    We can multiply all w[i]=w[i]*2, then check all w[i]+1 and w[i]-1 to be the possible best answer.

    Each check can be done in O(logn) by sorting childs and adulds separate, then binary search the number of correct guessed ones for fixed x.

    Edit: Or use prefix sums. Atfer sorting w[], we can split w[] at any position, then the correct guessed number is the number of childs left of the split position plus the number of adults right of the split position.

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

    Keep track of score0 and score1. Use map to iterate the weights and move the border line of guessing 0 vs guessing 1 from left to right. I submitted a simplified version of the code at: https://atcoder.jp/contests/abc257/submissions/32757902

    I was unlucky to only solved it one minute after the contest ended.

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

    check for all w[i], then also check for smallest weight-1 and largest weight+1(Solution)

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

    just sort the children array and parent array and apply binary to get the ans. also check if we have only children or only adults

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

How to solve E?

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

can any one help me with D , I think I miss understood the question . They are saying that : "Takahashi's objective is to become able to choose a starting trampoline such that he can reach any trampoline from the chosen one with some jumps."

some jumps means we can assume that he will be able to jump for each consecutive pair right ?

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

Hi Everyone, Can anyone help to find the mistake in my code of F? Link to Solution

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

For problem F, my solution is giving runtime error on 27 hidden cases. Why? https://atcoder.jp/contests/abc257/submissions/32791294

UPD: I have done the same thing as editorial except DFS instead of BFS, which I don't think should make any difference

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

    It makes all the difference, because the graph isn't necessarily a tree/forest, so there may be more than one simple path between nodes of different lengths, and DFS doesn't necessarily find the shortest of them