The last previous two contests show that rating changes = '-'. But my rating has already been changed.
Why are they doing this? is this an bug or the contests will be unrated?
Thanks for helping this newbie.
# | User | Rating |
---|---|---|
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 |
# | User | Contrib. |
---|---|---|
1 | cry | 165 |
2 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
The last previous two contests show that rating changes = '-'. But my rating has already been changed.
Why are they doing this? is this an bug or the contests will be unrated?
Thanks for helping this newbie.
After trying so hard, I could not solve problem A or problem B today, they were both so hard, help me how could i have solved it.
I thought there would be some logical solution for A, i thought of using STack, binary search in problem A.
But the solution is loops for 100 times? I dont understand what is purpose of such problems.
I want to quit cp after today.
ANy tips on how to solve problems will be appreciated.
Thanks
1778D - Flexible String Revisit
118D — Легионы Цезаря — Caesars Legions
106C — Булочки — Buns
2B — Наименее круглый путь — The least round way
4D — Загадочная посылка — Mysterious Present
33C — Прекрасная рандомизированная сумма — Wonderful Randomized Sum
5C — Наибольшая правильная скобочная подстрока — Longest Regular Bracket Sequence
82D — Два из трех — Two out of Three
73C — LionAge II — LionAge II
38E — Ну-ка, покатились! — Lets Go Rolling!
30C — Тир — Shooting Gallery
119C — Реформа образования — Education Reform
101B — Автобусы — Buses
113B — Petr# — Petr#
19B — Кассир — Checkout Assistant
8C — Нахождение порядка — Looking for Order
111C — Петя и пауки — Petya and Spiders
128C — Игра с прямоугольниками — Games with Rectangle
13C — Последовательность — Sequence
46E — Расческа — Comb
77C — Боброжуй-0xFF — Beavermuncher-0xFF
75D — Максимальная сумма — Big Maximum Sum
54C — Закон первой цифры — First Digit Law
41D — Пешка — Pawn
69D — Точка — Dot
11D — Простая задача — A Simple Task
21C — Полоска 2 — Stripe 2
27E — Число с заданным количеством делителей — Number With The Given Amount Of Divisors
95E — Счастливая страна — Lucky Country
123C — Скобочки — Brackets
126D — Фибоначчиевы суммы — Fibonacci Sums
49E — Общий предок — Common ancestor
MikeMirzayanov make the rollback happen asap please, i cant see cheaters enjoying their fake rating.
Please it has been over a month now since the last rollback.
Upvote if you agree.
Thanks! (please don't hate on mee)
Here are a few Expert level cheaters, who are gonna get the rollback and a ban probably.
I hope they get banned soon.
It said my solution 288164892 is from telegram and Mike durov requested to skip me.
If I get banned/disabled I. hope everyone on codeforces remembers me as the most hated/ratisted person ever.
So many higher rated ppl have bullied me through toxic comments on my blog, mocking me for my IQ/skills/looks , I have one of the lowest contribution in the history of codeforces.
I hope people remember my sacrifice.
Thanks!
After 34 contests, tremendous amount of hardwork and passion, I finally reach Pupil while having 69 IQ only.
It took me nearly 6 months to do it.
Im so happy
Refact.ai Match 1 (Codeforces Round 985)
What type of contest is this ?
Can anyone explain it to me please ? Thanks!
How to solve problems that require ad hoc, I have very low iq.
I can not think of something on my own, i need ideas, i can only work with problems that have a direct one step solution.
how can i improve
Thanks
Here I'm admitting my mistake and taking the responsibility.
I did not know about the consequences of it, I did not really want to cheat. I was just checking if the codes would work or not that is why I submitted codes for problem C, E and F from telegram in the last Div.3 contest I gave.
I hope everyone will forgive me and I will not lose any rating.
Thanks you, I will never do this again.
We all know, any permutation is made up of disjoint set of cyclic swaps. Read more about it here
i.e to make the permutation sorted, we need to do k-1 swaps for each k sized cycle.
Total swaps => n — number of cycles.
A variation of this standard problem was asked in the recent Div.3 2033E - Sakurako, Kosuke, and the Permutation,
We have to make the permutation such that either p[i] = i OR p[p[i]] = i ,
interestingly, solution to this comes as k/2-1 for each k sized cycle.
Now it makes me wonder what if we introduce one more condition to it =>
either p[i] = i OR p[p[i]] = i OR p[p[p[i]] = i
What would the answer be ? my intuition tells me it should be something in the order of k/6 for a cycle k.
Can you guys help me with this ?
Also what would be the general answer if we have m conditions like this,
either p[i] = i OR .... .... .... OR p[p[p[p[p[...i]....] = i .
Any help would be appreciated, Thanks!
Please help me fill this list on how to improve to 1000 rating.
Things I know :
Input/output
Variables and loops
Array
Vectors
Maps
Sets
Functions
String
Pointers
GCD/LCM
Please let me know what topics should I cover
Whenever I see math problems, I give up because my math background is weak. I am a biology student, but I love doing cp as a hobby.
Can anyone help me what theorems and algorithms do I need to prove to become better and reach 1000 rating ?
Thanks for help
binary search, bezout theorem, riemann hypothesis ? is that enough ?
please dont troll
Hyper Log Log — link to wikipedia
I heard this is an important algorithm to learn to get to 1000 rating, Could anyone break it down in simple terms, or maybe share an analogy? Like, something a 900 rated would understand?
Q. What exactly is it doing? I mean, how does it "estimate" things instead of just counting them for real?
Q. Why does it use these "hash functions"? (Is it for randomness? Or...?)
Q. What is this "log-log" part in its name supposed to mean? Is there a double logarithm somewhere?
Q. How accurate is it, really? And how does it balance between accuracy and memory usage?
Thanks in advance, and sorry if my questions are noobish.
I got 6k rank just by solving problem A yesterday, how is it possible ?
I used to get 15k ranks by solving A,B sometimes and now it's 6k ?
Are cheaters actually dead ? I got +100 delta for the first time, I hope to reach 1000 rating soon.
Thanks!
Can anyone help me understand it?
I've had nightmares solving problems on this, can anyone tell me resources to study this?
Also is it really this important to learn to get to pupil ?
Thanks
Problem: Given an input string s and a pattern p, implement regular expression matching with support for '.' and '*' where:
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input string (not partial).
Can anyone help me with this ?
i tried two pointers and it failed, then I looked at the solution. It was DP but I could not get the idea on how to think and understand that, Can anyone explain in easiest words to me please ?
Thanks
Tagging the smartest people I know here :
Given two numbers represented as strings a and b, compute their product and output product as a string.
|a| <=1e6, |b|<=1e6
How do I solve it, I brute forced it and it gives me TLE.
can anyone help me? is there an optimal way ??
My rating is 842, My lifetime goal is to get to pupil before I die.
4000 is something I can not even imagine, If I ever see someone with 4000 rating, i will ascend to the heavens immediately.
Thanks for reading my pain.
EDIT: My rating is now 743 after the contest (-99), seems like I will never reach pupil.
Its showing -84, but it was a testing round so shouldnt it be unrated for everyone ?
I dont want to lose my precious rating, Please help is this a bug ?
How to unfriend the user who was my friend earlier and now is disabled.
I dont wanna see such people in my friend list, How can I remove them.
Thanks for any help, greatly appreciated.
UPD: stop upvoting my blog, just answer my query MikeMirzayanov
UPD: Thanks to golden_ratio/1.618034 tourist_fantasy for helping me stop the haunting.
We generate permutation of given array randomly until we get it sorted.
It's expected complexity should be factorial n for n sized array, but I saw on google it's factorial n+1.
Can anyone explain to me how is it factorial n+1, because for a binomial distribution E(x) = 1/p(x).
Please purify my understanding.
Also is there any sorting algorithm better than bogosort ?
I joined codeforces on 16th May and it's 16th August today, It has been 3 months and I have no progress. I am still 3 digit rated. After giving every contest I am still not improving.
Is it really not for me ? Am I really 69 IQ ?
I bet no one in this world would get as little progress as mine if they practiced this hard.
Also the number of cheaters have risen significantly, impacting newbies like me.
Even after rollback I got no positive delta, It's disheartening.
With that I believe I will have to quit codeforces forever.
Goodbye, may'24 — august'24 cp journey
I checked submissions of the cheaters I caught and seeing them all 100% skipped made me very happy.
They get what they deserve.
Waiting for the rollback.
Good work MikeMirzayanov
nginx forbidden 403
Why do I get this alot nowadays when I open codeforces.com in my laptop ?
When I open it on my PC I don't get it.
What is wrong ? does anyone has any clue ?
Name |
---|