top of page

Forum Posts

kevinzhao183
Mar 21, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=489. This problem will require you to make a certain insight before being able to solve, but the programming shouldn't be very difficult.
0
0
14
kevinzhao183
Mar 14, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=378. It's another one of the old problems, before the time when USACO Platinum existed, which means that all the divisions had slightly harder difficulties.
0
0
10
kevinzhao183
Mar 08, 2022
In USACO & ACSL All-Star
Here is the homework link for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=1036
0
0
5
kevinzhao183
Feb 27, 2022
In USACO & ACSL All-Star
Here is the homework link for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=988
0
0
4
kevinzhao183
Feb 13, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=1084. It's another very recent problem, from last year January.
0
0
7
kevinzhao183
Feb 07, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=1132. This problem combines elements of brute force problems with more elegant insights.
0
0
9
kevinzhao183
Jan 31, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=832
0
0
10
kevinzhao183
Jan 25, 2022
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=687. It may be a problem that we have already seen/done before, but I would like you to take another look at it because it is good practice and also a good problem relating to the concept of maps (dictionaries in Python). I know we only touched on maps briefly at the end of class, so I'd like you to take some time and search up what they are and see if you can understand them. If not, that's alright because Bronze problems do not require maps, but they can definitely help in solving problems, such as this one.
0
0
10
kevinzhao183
Jan 11, 2022
In USACO & ACSL All-Star
Here is the homework link for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=1037. It's a problem whose topic fittingly relates to what we are going through right now in the pandemic. For this problem, make sure you pay careful attention to the bounds.
0
0
5
kevinzhao183
Dec 13, 2021
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=1012. This problem is algorithmic, and it is known as a greedy problem, where the solution is to take the best move at every step.
0
0
8
kevinzhao183
Dec 08, 2021
In USACO & ACSL All-Star
Here is the homework link for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=915. It is another algorithmic problem similar to the last homework problem, so the code itself won't be complex but the thinking involved will be complicated.
0
0
7
kevinzhao183
Nov 23, 2021
In USACO & ACSL All-Star
Here is the homework problem: http://www.usaco.org/index.php?page=viewproblem2&cpid=892. It's a nice problem that requires some algorithmic thinking in order to solve it, in contrast to the lots of brute force problems that we've seen recently.
0
0
14
kevinzhao183
Nov 15, 2021
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=736. It is the same one that we started on at the end of class but did not have time to practice on. I think it is a good exercise to practice String operations and algorithms, so take some time to think about it and try coding up a solution.
0
0
7
kevinzhao183
Oct 31, 2021
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=963. It is another problem where you can use brute force to find the solution, so try to implement a solution that does so.
0
0
7
kevinzhao183
Oct 26, 2021
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=857. It is quite difficult, but do try to think of a solution or a feasible method to find the answer. The problem itself is also a simulation one where you may find it possible to search all cases.
0
0
16
kevinzhao183
Oct 21, 2021
In USACO & ACSL All-Star
Here is the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=916. It's a graph problem just like the ones we did in class, so you'll have to try and apply those concepts to solve the problem.
0
0
11
kevinzhao183
Oct 11, 2021
In USACO & ACSL All-Star
Here is the link for the homework problem for this week: http://www.usaco.org/index.php?page=viewproblem2&cpid=617. It's another coordinates based problem, but this time you will have to reason in terms of lines instead of points.
0
0
12
kevinzhao183
Oct 05, 2021
In USACO & ACSL All-Star
Here's the link to this week's practice problem: http://www.usaco.org/index.php?page=viewproblem2&cpid=664. This one also requires a creative use of loops in its solution, along with another key insight you need to make. Hint: start by considering just one pair of words.
0
0
12
kevinzhao183
Sep 27, 2021
In USACO & ACSL All-Star
Here is the link to the practice problem for this week's homework: http://www.usaco.org/index.php?page=viewproblem2&cpid=616. The solution involves a creative use of loops, just like the other problems we looked at in class. We'll go over the solution next class, and you can email me any questions you have in the meantime.
0
0
11
kevinzhao183
Sep 21, 2021
In USACO & ACSL All-Star
For this week's homework, take a look at and try to solve the following problem: http://www.usaco.org/index.php?page=viewproblem2&cpid=663. This is a problem similar to the ones we did in class, so use this as an opportunity to practice taking the input and implementing an algorithm. If you have not already, do create a USACO account so that you can upload your program to the website to have it be automatically tested. We will go over the solution to this problem in the next class, and if you have any questions about it or your code, feel free to send me an email or just ask me next class.
0
0
19

kevinzhao183

More actions
bottom of page