GoogleCodeJamIO 2022 [](./LICENSE)

April 30, 2023 ยท View on GitHub

  • Python3 solutions of Google Code Jam to I/O for Women 2022. Solution begins with * means it will get TLE in the largest data set.
  • Total computation amount > 10^8 is not friendly for Python3 to solve in 5 ~ 15 seconds.
  • A problem was marked as Very Hard means that it was an unsolved one during the contest and may not be that difficult.

Rounds

2022

#TitleSolutionTimeSpaceDifficultyTagNote
AInversions OrganizePython3O(N^2)O(1)EasyMath
BIngredient OptimizationPython3O(N + DlogD)O(D)MediumGreedy, Heap
CInteresting OutingPython3O(N)O(N)MediumGraph, BFS
DInventor OutlastingPython3O(R^3 * C^3)O(R^2 * C^2)HardSprague-Grundy Theorem, Memoization