Do I?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Do I?
Название |
---|
As an expert, I believe that it is not necessary for you to learn hashing so that you reach expert, because only in very few problems hashing is the only way to solve, but for sure it is a useful technique to learn
if you can provide any good resources, it would be very helpful. Thanks
This should be plenty
I've never used hash stuff on CodeForces, so no
Nah. Chances you'd come across such in expert level are pretty rare, and even if so, deterministic alternative (KMP/Z) usually should also be available.
Not to mention, there are a number of other more prevalent topics you could improve on and reap the result.
What are topics can I learn then?
Solve some problems, learn how to use binary search.
I'd still advise basic binary search and some common sense to crack ad-hocs.
Extra quirk if using C++: try to learn
set
/multiset
. They're powerful tools for a handful of problems.I know all that stuff, I guess the only thing I can do is solve tons of more problems.
Seems like it. Either be faster or more precise with your code logic. That should do.
I dont know either of those and im expert
nah you dont have to but imo its not a hard concept. I just copy the usaco guide template and treat it like a black box. Moreover it may be useful in solving some problems, like I've "cheesed" some string hash problems that wouldve been impossible to come up otherwise. Just knowing that you can compare two substrings fast and what not is always good ig.
Nah.
I think I never came across a problem of rating <= 1700 whose only intended solution was hashing in cf.