We would like to invite you to an online replay contest for UWCOI 2020. UWCOI is an OI-style contest hosted by UWCSEA Dover which was attended by multiple schools in Singapore. It was also used to select the UWCSEA Dover team for the Singapore National Olympiad in Informatics.
Here are some additional details:
The contest will be held at 21:00 IST, Tuesday 25 February (tomorrow).
7 OI-style tasks (all tasks have subtasks) in 3 hours.
The questions are of a high quality and the contest will be rated for both Division 1 and Division 2.
There are also prizes, which are detailed under the contest page.
You can expect proper OI-type questions, overall. The contest was prepared to select a team for an OI contest so we felt it was very important to write questions that are also in OI style.
Anyone mind telling me what was wrong in my submission (the actual code starts from line 200) for Optimal Memory Address.
The idea was to building a weighted trie on the prime factorization of the numbers and finding the node that minimizes the sum of distances to all the marked special nodes.
Edit: I found a few errors, the main one was when traversing the node to minimize distance I was incrementing by the number of all elements in parent’s subtree rather than the total number of elements, it still TLEs in one testcase but I should be able to figure that out.
I believe that your solution (as well as the solution of mrho) are actually unintended and run in quadratic on an edge case, which you barely passed through constant factor tricks. Note that the Java submission of uwi runs in 0.24 seconds.
I also passed with O((n*2^k+e)*log(n*2^k)) but I think this theoretical complexity isn’t actually achievable. I cant think of a case where all bitmasks are actually traversed + are all “valuable” (since we just break out of dijkstra once we find the first path).
The intended solution was to compress the graph to just keys and locked nodes using O(K) Dijkstra, and then to run the subtask 2 solution on that graph. I think that the theoretical complexity is achievable (consider all keys connected to each other and connected to the node 1) but unfortunately did not have a specific test case. It seems that most people who tried n*2^k failed subtask 3, regardless.