Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

LoneFox's blog

By LoneFox, history, 5 years ago, In English

Round 1 of the 2019 Facebook Hacker Cup is less than 48 hours away!

The round will begin on June 29th, 2019 at 10am PDT and will last for 24 hours. You can check the start time in your local timezone here.

The contest will be available here shortly before the round begins.

You're eligible to compete in Round 1 if you solved at least one problem correctly in the Qualification Round.

Everyone who scores at least 30 points (regardless of time penalty) will advance to Round 2, which will take place on July 13th. Please note that all submission judgments will only be revealed after the round ends. More details about rules and other information can be found here.

Good luck!

The corresponding Facebook post can be found here.

Update: The round has ended, and solutions have been posted here. Thanks for participating!

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

| Write comment?
»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Does the problems visible to the members who haven't attempted the qualification round??

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Hi, I had commented on the FB post but no reply. I did not received the confirmation mail for the advancement to Round-1 though I had scored 30 pts. Please check that out.

»
5 years ago, # |
  Vote: I like it +2 Vote: I do not like it

This starts in under 1 hour! Good luck to all!

»
5 years ago, # |
  Vote: I like it -48 Vote: I do not like it

Which online compilers should I use for such large input and outputs..

Ideone doesn't seem to work for that

plz help...

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Use an offline compiler.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it -13 Vote: I do not like it

      which one???

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Doesn't matter. You can installl g++ or clang. Also most IDEs come with an in-build compiler: e.g. Visual Studio, Visual Studio Code, CLion, Eclipse, Codeblocks, ...

»
5 years ago, # |
  Vote: I like it -70 Vote: I do not like it

plz help plz.... fast

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

LoneFox, What is the time limit of problem B.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +12 Vote: I do not like it

    The only time limit for each problem is that you must be able to generate and upload your output file within 6 minutes of downloading the input file.

»
5 years ago, # |
  Vote: I like it +55 Vote: I do not like it

Great and interesting problems, thanks.

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I first submitted the correct code and the correct output for the 2nd problem, but then I bymistakenly resubmitted the code and the output, but for the output I submitted the wrong file. What do I do? The code I submitted is correct. 6 min timer has expired.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +21 Vote: I do not like it

    Please submit a clarification request in the Hacker Cup interface for issues like this.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I too have a query, that whether the input file changes on each new submission or it remains the same because I just forgot to download the new input file and made submission on the old input file. Can someone confirm this, I am really worried about it :(

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +3 Vote: I do not like it

      The input file stays the same per user for the entire 6 minute window. You do not need to re-download it before resubmitting.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +32 Vote: I do not like it

    I guess your solution will be judged as invalid. :< You can try submitting a clarification request and describing your situation, but I wouldn't hope for much. (As a good thing, you still have time to work on other problems.)

    A small lifehack for the future: you can look at the details of your submission (a link just above the submission form), where you can find the MD5 hash of your output file. You can then compare this hash to your local file (e.g. on Linux, md5sum my-output-file) to make sure you submitted the correct output.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +21 Vote: I do not like it

      Thanks, I did send a clarification request and they fixed it!

      • »
        »
        »
        »
        5 years ago, # ^ |
        Rev. 2   Vote: I like it +39 Vote: I do not like it

        Nice :>

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it +116 Vote: I do not like it

        If I'm not sure about some +-1 in my code, I will just submit two versions next time and tell them later which one should be judged :D

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

What's wrong with this solution for 1'st problem- Add edges as given. Calculate all pair shortest distance using floyd-warshall and then check if it matches with the given information.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I did the same and got accepted.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I have similar idea and also got wrong, run floyd-warshall on gived edges. Check if distance is correct.

    Then, just printed edges for each pair of vertices in graph where there is a path with weight equal to the distance between them.

    Link to code

    • »
      »
      »
      5 years ago, # ^ |
      Rev. 2   Vote: I like it +32 Vote: I do not like it

      You shouldn't print edges with weight > $$$10^6$$$.

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        I am printing edges with weight=1 (for the nodes which are not mentioned in the input edge list. I am just joining all of them with a single node with weight=1)

        Still got WA.

        Here is the code: https://codeforces.com/gym/102264/submission/56359042

        • »
          »
          »
          »
          »
          5 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          But then you are introducing new edges and therefore possibly newer shorter paths. The statement says your output graph needn't be connected, so you can just print the input without adding extra edges (provided the input satisfies the triangle inequality).

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

            But I am adding the remaining nodes(which are not connected with any other node) with only one node(let's call it node A). How will this result in newer shorter paths because the remaining nodes do not have any constraints on them (i.e. Not mentioned in the input edge list)

            • »
              »
              »
              »
              »
              »
              »
              5 years ago, # ^ |
              Rev. 3   Vote: I like it +10 Vote: I do not like it

              You're right, my bad. The issue is in your Floyd-Warshall code. It is important that your loop structure has the following form:

              for (int b = 0; b < n; ++b)
                for (int a = 0; a < n; ++a)
                  for (int c = 0; c < n; ++c)
                    if (d[a][b]+d[b][c] < d[a][c])
                      d[a][c] = d[a][b]+d[b][c];
              

              That is, your outer loop runs over all possible 'midpoints' to relax. To see why this works, imagine the optimal path. Every time the outer loop (over b) runs over a vertex in the optimal path, this vertex gets 'cut out' by the relaxation step (imagine removing it and connecting its endpoints a and c with a new edge).

              Conversely, your code currently has the following loop structure:

              for (int a = 0; a < n; ++a)
                for (int c = 0; c < n; ++c)
                  for (int b = 0; b < n; ++b)
                    if (d[a][b]+d[b][c] < d[a][c])
                      d[a][c] = d[a][b]+d[b][c];
              

              Here we loop over the point to relax over (b) inside. It's not easy to find a counter example for this, e.g.:

                0 -- 2 -- 3 -- 1
              

              .. where all edges have weight 1. This loop structure will never find the optimal path from 0 to 1, see here: https://ideone.com/rdJue1

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

                Ah, yes you are right. I thought the loops are independent because that's how they look, i.e. the initial and final values are 0 and n-1 in all of them, so I thought the order doesn't matter.

                Thank you so much for the clear explanation.

                Update: I submitted again after making changes and got AC now.

              • »
                »
                »
                »
                »
                »
                »
                »
                5 years ago, # ^ |
                  Vote: I like it +95 Vote: I do not like it
                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  5 years ago, # ^ |
                    Vote: I like it +20 Vote: I do not like it

                  Hi, I am one of the author of this paper. Where did you know it? (Just for my curiosity)

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  5 years ago, # ^ |
                    Vote: I like it +48 Vote: I do not like it

                  There's a funny story behind this paper. They prepared a problem that requires Floyd Warshall on AtCoder. Then, they wrote incorrect solutions to make sure that they fail — but magically, with three repetitions, they passed.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  5 years ago, # ^ |
                    Vote: I like it +52 Vote: I do not like it

                  Nice. What's next? Maybe it's enough to run greedy approach three times to solve knapsack? That would mean that P = NP. Even more, that would mean that 3*P = NP and you can compute N from that.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  5 years ago, # ^ |
                    Vote: I like it +13 Vote: I do not like it

                  Actually no, the opposite is then true, if P = NP and 3*P = NP then 3*P = P so P = 0 and N is indeterminate :)))

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  5 years ago, # ^ |
                    Vote: I like it +10 Vote: I do not like it

                  I think I saw it on the "Theory of Computing Blog Aggregator" RSS feed as a newly posted paper on arxiv.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      What I did was first checked the given data with floyd warshall and if passed then printed the same data in the output. I got AC.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Instead of doing what you did, just printing all the edges in your 'edges' vector gave AC.

      Your updated code

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +16 Vote: I do not like it

    Bear in mind that edge weights in your graph must be between 1 and 1,000,000, inclusive. Some pairwise node distances in the graph (aside from the ones in the restrictions) may exceed that value.

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

    Did you consider the case where multiple distance request are on the same pair of vertices?

»
5 years ago, # |
  Vote: I like it +17 Vote: I do not like it

I came up with a max flow solution for C, but didn't have time to code it. Did anyone else take this approach?

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +20 Vote: I do not like it

    I think it is the only solution.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +11 Vote: I do not like it

    I also solved it with max flow.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +21 Vote: I do not like it

    Am I the only one who solved C with DP?. To whom it may concern, link to my code: https://pastebin.com/ziQz0hAp.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +1 Vote: I do not like it

      I also used DP, but only had $$$N^2$$$ states compared to what seems like $$$N^4$$$ in your code.

      code
    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Can you please explain your approach?

»
5 years ago, # |
Rev. 4   Vote: I like it -63 Vote: I do not like it

I think I have been judged incorrectly for problem A, I have checked my output by running someone else's code whose code got accepted. Both the outputs match.

LoneFox

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I'm afraid your submission is indeed incorrect, there's at least one case for which it outputs a graph when the answer should be "Impossible". Please see this post for the official solutions and full input/output which you can download!

    • »
      »
      »
      5 years ago, # ^ |
      Rev. 2   Vote: I like it -60 Vote: I do not like it

      I have matched my outputs by running two person's codes on the input I got and our outputs match exactly. diffchecker says the two files are identical

      If my solution got rejected, they how did their's solution get accepted, even when the order of the printing of edges exactly matches with theirs

      LoneFox

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it +51 Vote: I do not like it

        you indeed cried a lot for a single competition.

    • »
      »
      »
      5 years ago, # ^ |
      Rev. 2   Vote: I like it -70 Vote: I do not like it

      I have submitted the same exact code on Codeforces Gym and my code got accepted. Now?

      LoneFox

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it +21 Vote: I do not like it

        I've responded to your in-contest clarification with your submitted output file as well as the correct one, so you can see for yourself where exactly you went wrong. I can't comment on the CodeForces gym and how its own custom judger was set up.

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

A solution for problem D.

First, if V = number of points, then every line might be a vertical line, so consider this as an alternative.

Otherwise, at least one line must be horizontal. Sort the points by X and then by Y. Now for each point we think about the solution if this point is the last one with an horizontal line. If it has an horizontal line, all the points that are upper and to the left must have horizontal lines. The points that appear later have vertical lines. Finally, the points that are at the left and lower, might be vertical or horizontal. If some of them can have horizontal lines (based on the value of H), it is good for us (because the additional cost is 0), so we put horizontal lines in those that have a larger Y. This can be implemented efficiently with binary search trees (for instance using the ones in the STL). Of course, if the number of horizontal lines or vertical lines results in a too large value, this option is discarded.

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by LoneFox (previous revision, new revision, compare).

»
5 years ago, # |
  Vote: I like it +20 Vote: I do not like it

The contest is in Codeforces::Gym: 2019 Facebook Hacker Cup, Round 1

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Why solutions are not checked even on sample test?

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    It’s a no feedback style of contest.

»
5 years ago, # |
Rev. 6   Vote: I like it -134 Vote: I do not like it

Gym's Testcases for Problem A are weak

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +53 Vote: I do not like it

    Maybe you should read the proof of Floyd's algorithm and see why the order is important.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +27 Vote: I do not like it

      Pfff, no. I'd rather ask it publicly and let somebody else rewrite the proof and explain it to me in a magical way.

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +57 Vote: I do not like it

    xd

    "I'm getting WA" changed to "testcases are weak".

    Also, if you get WA on some big test, you can still test it yourself on small random tests. Read more here.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it -37 Vote: I do not like it

      I got my mistake but still my wrong solution got accepted on Codeforces Gym. There was no option to delete the comment so I edited it so that people dont make the same mistake I did and run to Facebook telling that their solution got accepted on Gym but it gave WA on Facebook

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it +9 Vote: I do not like it

        Then next time write a new comment for that. You modified your comment and now all replies don't make sense unless somebody clicks a small <- rev button.

        • »
          »
          »
          »
          »
          5 years ago, # ^ |
            Vote: I like it +18 Vote: I do not like it

          Sure, will remember in the future. Thanks!