I do leetcode daily, but my leetcode rating is 1350. My codeforces rating is 984, it should atleast be 1200+ in the range of pupil. i dont know why what is wrong with me.
please help;
№ | Пользователь | Рейтинг |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
I do leetcode daily, but my leetcode rating is 1350. My codeforces rating is 984, it should atleast be 1200+ in the range of pupil. i dont know why what is wrong with me.
please help;
Название |
---|
Using the Rayan contest as an example, why did you go for D without solving A-C first (plus, you got a lot of penalties on that problem)? You did the same in today's Div3, going straight for F. My suggestion would be not to skip ahead immediately, but try to solve in order, since difficulty increases after each contest (unless you get really stuck and think that the next problem would be easier to solve, though do that with caution).
This is wrong assumption. I often feel no clue of how to even start thinking in problem B which atleast in further problem I am able to find an approach. Now then things come to complexity or coding the thoughts look too tough. In B generally some optimal approach problem arrives or of similar nature when the "best" is not at all obvious or I am missing some info.
As someone who struggles with the same issue at times, I understand that. There are sometimes where a harder problem feels easier to solve than a much easier problem (which happens especially in Div3 and Div4 rounds in my opinion). However, general rule of thumb is to not skip to problem D and spend 6 attempts before solving A.
Not to mention, how often does the approach you find for a harder problem actually work. Looking at your submission history, in round 968, you skipped from solving A and B to going straight for F, which your solution timed out multiple times. Just having an approach is not enough to solve some problems, especially since CF doesn't have subtasks. Sometimes solving a problem takes trying tons of different methods to find what sticks and what observations you can gain from trying those methods; by just skipping a problem in contest if you can't immediately figure out a possible solution, you lose the chance to try and solve that problem, rather than struggle on a question where your O(N^2) solution times out when the intended solution is O(N)
That is true. While in interview setting the first thing is to go for a brute force, but in a contest, I see it clearly now that higher problem look for heavier data structures like seg tree or so to be solved. Even if one gets a solution, one will falter if one is not good at it.
Leetcode rating is much cheaper than Codeforces'
For example, LeetCode 3352 is rated 2482 according to Clist, but the same problem in Codeforces (914C - Комивояжёр и специальные числа) is *1800.