-
Notifications
You must be signed in to change notification settings - Fork 540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contact Form Submission - Suggestion (Silver - More Operations on Sorted Sets) #5173
Comments
I submitted the issue above. I've been thinking this for a while though I never got around to posting it. Bit Inversions, the in-module problem that demonstrates the use of sorted sets, already has a note about it being too hard for Silver, so it really should not be in a Silver module. Probably the problems that require the use of sorted sets / maps specifically (not just priority queue) should be split into a separate module and moved to Gold. The module after this (https://usaco.guide/silver/custom-cpp-stl) should also be moved to Gold. |
Btw, I think the most recent problem about sorted sets / maps was https://usaco.org/current/data/sol_prob3_gold_jan25.html, which was the hardest problem in its contest. |
which module of ours covers priority queue |
Priority queues are introduced in this module. That being said it would make more sense for priority queue to be introduced before sorted sets given that they are simpler and also available in Python. The use cases are also rather different. |
I went through all of the in-module problems, here are the ones I found that can easily be rewritten to avoid the use of sorted maps / sets. Cellular Network: Binary Search / Sorting / Two Pointers All of these can be moved into other modules or a new priority queue-specific module. Side note: The ordering of topics in Silver sorting & searching is very strange.
|
Someone submitted the contact form!
URL: https://usaco.guide/silver/intro-sorted-sets
Module: Silver - More Operations on Sorted Sets
Topic: Suggestion
Message:
About sorted sets specifically: Shouldn't these be in Gold instead of Silver? There is only one Silver problem in this module for which sorted sets / maps are used (Milk Measurement). Whereas for Convention II the solution can easily be rewritten to use priority queue instead.
The text was updated successfully, but these errors were encountered: