LabNotForProfit / GoogleCodeJam-2018

πŸ‘Š Python Solutions of GCJ 2018

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python solutions of Google Code Jam 2018. Solution begins with * means it will get TLE in the hardest data set (total computation amount > 10^8, which is not friendly for Python to solve in 5 ~ 15 seconds).

Qualification Round

# Title Solution Time Space Difficulty Tag Note
A Saving The Universe Again Python O(P) O(P) Easy Greedy
B Trouble Sort Python O(NlogN) O(N) Easy Sort
C Go, Gopher! Python O(P) O(1) Medium Probability, Simulation
D Cubic UFO Python O(1) O(1) Medium Rotation Matrix, Geometry

Round 1A

# Title Solution Time Space Difficulty Tag Note
A Waffle Choppers Python O(R * C) O(R + C) Easy Array, Accumulation Sum
B Bit Party Python O(ClogC * log(max(S)*B+max(P))) O(C) Medium Binary Search
C Edgy Baking Python O(N^2) O(N) Medium Intervals

Round 1B

# Title Solution Time Space Difficulty Tag Note
A Rounding Error Python O(NlogN) O(N) Medium Greedy, Memoization
B Mysterious Road Signs Python O(S) O(1) Medium Graph, Sliding Window
C Transmutation C++ *Python O(M^3 * logS) O(M^2) Hard Binary Search, Overflow Pruning

Round 1C

# Title Solution Time Space Difficulty Tag Note
A A Whole New Word Python O(T) O(T) Easy Trie
B Lollipop Shop Python O(N^2) O(N) Easy Probability
C Ant Stack C++ *Python O(N * K) O(K) Medium DP

About

πŸ‘Š Python Solutions of GCJ 2018

License:MIT License


Languages

Language:Python 76.6%Language:C++ 23.4%