Algorithms
Data Structures
Programming Languages
Misc 1
competitive programming club
100

What is the time complexity of binary search?

O(log n)

100

What data structure is first-in, last-out?

Stack
100

What is the fastest commonly used language for competitive programming?

C++

100

What is the average case time complexity of bogo sort?

O(n!)

100

What is the name of the other club that goes by CPC?

Paly Capstone Programming Club

200

What is the best possible time complexity for a sorting algorithm?

O(n log n)

200
What data structure is used to add key, value pairs and retrieve them in O(1) time?

Hash Table

200

What language defines functions using def function(x):

Python

200

What algorithm can be used to multiply 2 polynomials much quicker than O(n^2) where n is the degree of the polynomial?

Fast fourier transform

200

What contest platform do we use to host problems?

Codeforces

300

What algorithm finds the shortest path on a weighted graph with nonegative edges?

Djikstra's algorithm

300

Which data structures allows for adding elements while keeping them in a sorted order?

Binary Search Tree / C++ Set / Java Treemap

300
How do you print something without a new line in Java?

System.out.print()

300

Which Belarusian competitive programmer is highest ranked in Codeforces?

tourist

300

When are our meetings?

Fridays lunch

400

What algorithm can be used to quickly query the lowest common ancestor of 2 nodes in a tree? 

Binary Lifting

400

What data structure can be used to represent connected components in a graph?

Disjoint Set Union

400

What programming language is this?

>++++++++[<+++++++++>-]<.

Brainfuck

400

What is the name of the farmer in USACO?

Farmer John

500

Which algorithm(s) can be used to traverse all the nodes in a graph in an ordered way? You only need to list 1 to get points.

BFS/DFS

500

What data structures allows for range add and range min queries in O(log n) time per query?

Lazy Segment Tree

500

What programming language is commonly used in FPGA design?

SystemVerilog, Verilog, VHDL

500

What are the highest and lowest codeforces problem ratings?

800, 3500