What is the name of the worse CPC club?
What is Paly Capstone Programming Club?
What is the time complexity of prefix sums?
What is O(N)?
what language is this?
# This program adds two numbers
num1 = 1.5
num2 = 6.3
# Add two numbers
sum = num1 + num2
# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
What is Python?
Which student from Paly promoted to USACO platinum in the 2023 december contest?
Who is Andrew Fan?
What is the bitwise AND of 14 and 34?
What is 2?
How many CPC meetings have there been?
what do you use to find a value that satisfies a strictly increasing function?
What is binary search?
what language is this?
public class HelloWorld
{
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
What is Java?
Who is currently rated #1 in the USA in codeforces?
Who is Benjamin Qi (Benq)?
Describe an O(n) algorithm for the following problem:
A frog can jump 1, 5, or 10 tiles and starts on tile 1. How many ways can it jump to the nth tile?
Use knapsack dp
Who watches youtube in the back?
what is the fastest sorting time of any array of size N?
What is O(N log N)?
What is the fastest programming language for USACO?
What is c++?
what does this code output?
input H, R
B = 0
if H>48 then
B = B + (H - 48) * 2 * R
H = 48
end if
if H>40 then
B = B + (H - 40) * (3/2) * R
H = 40
end if
B = B + H * R
output B
Who plays Brawl Stars in the back?
Who is Aiden Yuan?
What data structure is used to keep track of points in Dijkstra's algorithm?
What is priority queue?
what language is this
Format : relation(entity1, entity2, ....k'th entity).
Example :
friends(raju, mahesh).
singer(sonu).
odd_number(5).
Explanation :
These facts can be interpreted as :
raju and mahesh are friends.
sonu is a singer.
5 is an odd number.
What is Prolog?
Give the general proof of why sorting is at least O(n log n).
idk i'll judge you
What is the best algorithm to find the smallest polygon containing a set of points on a grid?
What is convex hull?
What data structure commonly used in competitive programming is only implemented in the C++ standard library?
What is bitset?