# | 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 | 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 |
+321
And here's something special: Solve problems and make a difference! Yes, you heard it right, just like my last contest, this time as well you can help the world just by solving problems. I will donate money to the underprivileged people in my neighborhood based on the solve count of each problem by the following measure: Donation Per AC
You can check how it went the last time I did this: https://codeforces.me/blog/entry/96333#comment-907470 Also, the top $$$5$$$ Bangladeshi contestants will receive $$$1000, 800, 700, 600,$$$ and $$$500$$$ BDT respectively from me as a small gift! Note that neither TON nor Codeforces has anything to do with the donation or the gift. |
+90
Not me guessing difficulties by USD |
+80
I only received the message yesterday that YouKn0wWho's round requires an alternative problem, and the coordinator needs to select a problem from my round (which you previously coordinated). We are struggling with selecting problems and fixing bugs. We only confirmed the final problemset a few hours ago. And I expect to notify you after participating in today's codechef round. Overall, I apologize for not communicating with you in a timely manner. |
+63
Submission deadline 29th December 2025 doesn't look right. |
+51
Solutions (SubtasksWhere) E (bincatmod) Let $$$f(n)$$$ denote the required value for $$$n$$$. Let $$$b$$$ be the index of the MSB of $$$n$$$. We’ll formulate $$$f(n)$$$ recursively. Notice that we can split $$$f(n)$$$ into parts $$$A$$$ and $$$B$$$ — where $$$A$$$ is the concatenation of binary numbers $$$1, \ldots, (2^b - 1)$$$, and $$$B$$$ is that of numbers $$$2^b, \ldots, n$$$. For example $$$f(6) = 11011100101110$$$. Here $$$b=2$$$, $$$A$$$ is $$$11011$$$ (corresponding to numbers 1, 2, and 3), and $$$B$$$ is $$$100101110$$$ (corresponding to numbers 4, 5, and 6). Clearly, $$$A = f(2^b - 1)$$$. We’ll now separate out the contribution of bits corresponding to $$$2^b$$$ to part $$$B$$$. Rewriting, $$$B = 100100100 + 000001010$$$. The first addend is the contribution of $$$2^b$$$, and it is just the sum of a GP $$$(10^3 + 10^6 + 10^9)$$$. We can calculate this quickly (under modulo) using binary exponentiation. Let’s call this contribution sum $$$c$$$. The second addend is quite similar to the original problem — it is the concatenation of the binary representations of $$$(2^b - 2^b), (2^b + 1 - 2^b), \ldots, (n - 2^b)$$$. The (simplifying) change is that each binary number is padded with leading zeros to always have $$$(b + 1)$$$ digits. Let’s define a new function $$$g(l, n)$$$ which denotes exactly this — concatenation of binary numbers $$$0, \ldots, n$$$, with each binary taking $$$l$$$ digits. We’ll figure out how to compute this recursively. This will solve the problem for us, since: You can similarly break $$$g(l, n)$$$ into two parts, splitting where the MSB of $$$n$$$ appears. Both halves here are quite symmetric, since all binary lengths are equal. Do a similar calculation of the contribution of the MSB (call it $$$c'$$$), and you’ll get a clean recursive form for $$$g$$$ as well: This is nice, but takes $$$O(n)$$$ calls to complete the recursion tree. To fix it, memoise and AC :D (As an intuition for why memoisation works, notice that the left call always has the argument of the form $$$(2^k - 1)$$$, which means it can only have $$$\log(n)$$$ distinct values. The right call just strips off the bits of the initial $$$n$$$ one by one, going from the MSB to the LSB, which is again atmost $$$log(n)$$$ steps.) Python code for reference. C (Points and Threads) Sort all points by their positions. We’ll try to simulate Kruskal’s algorithm. Notice that while running Kruskal’s on this graph, the connected components will all be contiguous ‘subarrays’ of these sorted points. (More formally, there exists a sorted order of edges such that adding them in order, […]) We’ll store all relevant edges in a priority queue $$$P$$$ and repeatedly pick the smallest. Initially, each point is a separate component. The relevant edges are only ones that join two adjacent components. If a component currently contains points $$$[l, r]$$$, then $$$P$$$ should contain (upto) two edges corresponding to extending this component: one merging it with $$$r + 1$$$, and another merging it with $$$l - 1$$$. All that remains is to quickly calculate the cost of extending a component to one side. In other words, we need $$$\min \limits_{l \leq i \leq r} a[i] \cdot (p[i] - p[l - 1])$$$ (for one side). This can be done using CHT, maintaining two sets (one for each side) for each component in the UFDS along with small-to-large merging. |
+50
遮沙避风了 |
+43
Sorry, I overreacted. I didn't consider that the problem could have been just added...... |
+42
toaster |
+41
As a tester, I can confirm that this round does indeed have problems. |
+34
Meaningless. Please don't waste your time. It's a waste of time to read your unreadable blog. |
+31
check my contest history to see what comes after 1599 |
+28
Unlike the TON round 8, 256-1023 places lose their prizes, and 20 USDT is much less than 8 TON (8 TON > 8 * $5 = $40 = 40 USDT), which 128-255 places got in round 8. Their settlement is also without TON now. What happened to TON? |
+24
MAKISE KURISU!!!! |
+24
I feel you. |
+24
遮沙避风了 |
+22
They might accept anything. In IOI there are easy problems and hard problems |
+21
Bro can't you read? |
+20
As a tester, I didn't know I could have won $15,000 (just needed to beat a certain Belarusian...) Y'all should give it a shot!!! Good luck. |
+18
As a tester, I can confirm that I tested this round. |
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 40 hours ago
+17
Thanks for the contest. QUICKEXIT was such a beautiful problem! |
+17
I see tourist registed for this contest! |
+17
Reading this post was heartwarming. I'm glad you liked our problems, and I hope you get a top-200 shirt next year.
I'm sad to see you had such a terrible experience with our recruiting team. Sometimes there are discrepancies between what the recruiters are focused on and what's ultimately in the long term best interest in the company. Sometimes there is just widespread systematic incompetence at making what seem like obviously good choices when there are lots of people involved in something big. I honestly have no idea how your resume got ignored 12 times. Obviously it shouldn't have. There's nothing I personally can do about it at the moment, but I just wanted to say I'm sorry, it's not your fault, and I'll do what I can to help our company make more reasonable decisions in the future. |
+16
BUMP |
+16
I'm pretty sure that in general graph you cannot do better than $$$O(N^2)$$$. Someone please correct me if I am wrong. |
On
FeiWuLiuZiao →
Is there a Manhattan Distance Minimum Spanning Link algorithm, or is it NPC, 24 hours ago
+16
And is there a Euclidean Distance MST algo |
+16
你说的挺完美,但肯定不对 |
+16
So why do you say you can't speak English but the sentence "I can't speak English" appears? |
+14
As a tester, this is the $$$4^{th}$$$ time in a row I found at least one problem in the round I tested really satisfying, and I hope people would feel the same. |
+14
As a tester I wish good luck to everyone! |
+14
Your saying is perfect,but 100% incorrect. |
+13
change time/day icpc india clash |
+13
Kazakhstan is on the list now |
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 45 hours ago
+13
Reminder: The contest starts in 30 minutes. |
+13
these kind of blogs are good, not all blogs on codeforces have to be useful and clever, a couple of them are just for fun and relaxation from tasks. I agree that second one is stupid, but the first one is pretty vital and funny |
On
stefdasca →
Invitation to Indigo Coding Competition 2024 ($1000+ worth of Prizes for high school students), 36 hours ago
+13
As a tester, hackerrank is kinda mid |
+13
Let me tell u sth about ArshiaDadras: I officially started competitive programming and programming classes with Arshia Dadras four years ago. He is a very capable and ethical teacher. Thank you, Arshia, for being so great <3 |
+13
Congratulations sir. Can you share or tell any compiler which is useful to use in MHC, like to generate output for those long test cases. Me noob only uses codeforces custom test everytime ;) |
+13
why 256-1023 places no prize this time :( |
+13
Of course. I mentioned I was 2800+ in leetcode contest, 2200+ in codeforces, top 500 in Google Code Jam and top 1000 in Meta hacker cup. What's more, I have a paper published in Science, which is extremely top journal in physics area. The only weakness is that I am not computer science major, and I need sponsorship. However, this is still not strong enough. For every SDE position, there is 1000+ resumes waiting to be selected, which make the job application extremely competitive. It is normal that I am not the 1/1000. |
+13
People seem to not like problems that are different, and interactive problems typically have a different way than normally expected to solve. It requires a different mindset. I think interactive problems are kind of fun. They can be frustrating, but they are unique. People should just create habits for interactive problems, and continue with it as a normal problem. For me in C++, I just make sure to have cout << flush; and to comment out my fast IO. I don't know if that is even necessary, but I make that a habit for interactive problems and I never need to worry about the interactive part of the problem. Thank you for reading this. I believe that if you struggle with what to do on the interactive portion of the problem, try a few interactive problems out. Try different ways of flushing the output, using the different types of input/output, etc. If you are comfortable with it outside of the contest, you can be comfortable with it inside the contest. |
+12
Thank you so much for your kind words and support, AmirParsa! It’s truly a pleasure to be remembered in such a thoughtful way. I’m also really happy to see that you’re continuing to improve your coding skills. Wishing you the best of luck in your journey, and I hope we get to meet in person soon! |
+11
Thank you, I've just fixed it. |
+11
tbh im very shocked that blog became so popular, i posted it just for fun, but my friends liked the post, we just love memes about that, thats all |
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 42 hours ago
+10
I struggled with ONETOTHREE during the contest and wondered why so many participants get AC with this problem, but after the contest, I noticed and was amazed that the following scheme is valid. Spoiler
|
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 42 hours ago
+10
We can actually prove it by proving that we can never merge islands of 3's. (2's are fixed). I got 1e9+7 WAs before noticing that we have to run the loop backwards as well for smth like 233312 😭 |
+10
if possible please change the time/date of the contest as icpc india preliminary contest will be held on the same day 23rd nov 21-23:30. so that we all can take part too!! |
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 33 hours ago
+10
When I came up with the problem, I had a more complicated casework-y solution, and only later realized that the simple greedy implementation is actually correct. I was not sure how guessable this was so I briefly considered modifying the problem to ask for the answer for every prefix or something like that, but after discussing with the tester we decided it's fine to keep it as-is, since for the most part I feel like if you're able to think of this algorithm then it's not too hard to prove it either. (Also it makes for a simple implementation which is always nice.) I did make sure to modify the samples so that just iterating forward would pass them though :) (you're welcome RoomTemperatureIQ) |
+10
Congratulations Screenwalkers! Our team(WayInWilderness) participate in Yokohama Regional from korea. So it would be fun watching the university of tokyo teams at scoreboard during the contest. |
+10
Same here. I (almost) always define all query syntaxes into functions accordingly, then forget about them and do the problems proper. |
+9
I've seen problems around 1500 |
+9
SecondThread I think there might be a bug in the form menu. I used tab to navigate to the next option, but it triggered submit instead. Now they confirmed it with an incomplete delivery information. |
+9
Pyqe but he's a newbie |
+9
ChatGPT: In English OK, Here is the English translation of the text: Child, is your mindset aligned with the goals of studying informatics Olympiad (IO)? Through scientific adjustment, such as exercising, running, and implementing a self-made plan, you can improve. If your mindset collapses every few days, it’s likely to happen again during a major competition. Learning IO should be a joyful experience. If it feels like a burden, a constraint, or even suffering, why are you doing it? You need to manage your emotions by creating a scientifically sound plan, learning how to learn, and expressing negative emotions through reading, walking outside, or exercising. If you repeatedly let yourself wallow, your emotions will accumulate and eventually explode, leading to extreme outcomes. IO is inherently challenging; it won’t become easier just because you’re anxious or impatient. Child, is your mindset truly suitable for pursuing IO? Child, from the time I’ve known you, I’ve noticed that you tend to see only one side of things. When you can’t solve a problem, ask for help and explanations. Studying IO is manageable—platforms like Codeforces (CF) and Atcoder offer excellent problems. Solving even two or three can make a difference. Approach it step by step, patiently tackling one concept at a time. Originally, I intended to discuss these points during my duty hours with you. To All Students: Training during Mid-Autumn Festival (15th-16th): Additionally, there is a CSP-S exam on the 21st, which conflicts with the high school sports day. Please plan your schedule. Participation in CSP is mandatory to qualify for NOIP. Plan your time wisely. For those with travel plans during Mid-Autumn, training is optional. Seeing the world is also important, as is participating in sports events. High school students, good luck with your monthly exams. Regarding Unsolved Problems: Look around—has anyone been penalized for sincerely studying IO? We evaluate based on results and performance. Those who perform well will be identified through competitions and tasks. If a student is not suitable for training in this group, decisions can be made openly and transparently, focusing on practical solutions. After CSP, those who don’t achieve high scores might reconsider their paths. For later competitions like NOIP, different levels and grades will have varying criteria. I believe democratic discussions and open communication can work well in this context. On Decision-Making: Competitions are high-pressure and require determination, decisiveness, and unwavering commitment. Hesitation leads to wasted time and energy. Learn to face challenges with clarity and problem-solving strategies. Finally, remember that setbacks are inevitable, but how you approach them defines your progress. Reflect on these points and think critically about your decisions. This translation captures the original's intent and nuances, emphasizing the themes of mindset, perseverance, scientific planning, and constructive self-reflection. In Chinese 以下是还原后的中文句子: 孩子,你这种心态是不是和搞信奥的志趣不相符?制度是约束你们别退废的,你总去想制度对你的枷锁。你自己考虑好,自己要调整这种心态。咱们的一个措施是自己制定计划,并且自己咬着牙完成。 通过科学的调整,比如运动、跑步,自己制定计划并实施。你这三天两头心态就不行了,崩一次,大赛的时候也大概率会崩。学信奥是快乐的事,如果你现在学它是枷锁,是约束,是痛苦了,你还学它干什么? 这种情绪需要自己制定科学的计划,学会学习,通过看书、走出来,通过运动把负面情绪发泄出来。如果你一天两头这样,你的情绪积累到一定程度会爆发的,走向极端的。信奥就是这么难,它不会因为你着急或者不着急,就会变简单。 孩子,你这种心态是不是和搞信奥的志趣不符?制度是约束你们别退废的,你总去想制度对你的枷锁。你自己考虑好,自己要调整这种心态。咱们的一个措施是自己制定计划,并且自己咬着牙完成。通过科学的调整,比如运动、跑步,自己制定计划并实施。你这三天两头心态就不行了,崩一次,大赛的时候也大概率会崩。学信奥是快乐的事,如果你现在学它是枷锁,是约束,是痛苦了,你还学它干什么? 孩子,从接触你,发现你看事情容易就只看到事情的一面,事情是有多面的。你要学会看这个多面性。我们制定制度让你们做题,做题书的源头是怕你们堕落,怕你们偷偷地玩游戏,扯淡。你看谁因为天天做题书,我们罚,我们念咒?自己要心定,没堕落,你就耐心地学。做题书实际上也好办,同伴有完成的简单题,你还没完成,求助讲解就可以了。自己耐心研究那个知识点,耐心研究就是了。CF、Atcoder上那么多好题,做两道就是了,第七点,小台阶。 本来这些打算我值班的时候,和你谈谈的。 各位同学,中秋放假,周日、周一训练,早晨8:00-21:00,初中同学建议来,高中同学可以来。高中同学还是以第一次月考为主。如果有同学有出行计划,可以去,看世界很重要。周二中秋这天,让孩子们好好休息,好好玩玩。老一结合。 各位同学,中秋节15、16号早8:00-21:00,在清华小区3楼机房训练。初中同学建议都要参加,高中同学在文化课学习、复习没有问题的情况下,可以来训练,但要自带笔记本。另外21号有CSP-S的考试,和高中学校运动会冲突,大家规划好时间,参加,不参加CSP是参加不了NOIP的。大家把时间规划好,中秋有出行计划,不强制参加训练,看世界也很重要,参加运动会也很重要。祝高中同学,月考加油。 孩子,你们弄不明白的题,就不要考,特别容易引起问题。SPJ不会写就别弄。 你看谁正常学OI被我们罚了?我们现在只看结果,以成绩说话。你看谁成绩好我们罚了?因为,我们就可以通过联赛成绩,大家做题情况逐渐地去筛查。那你这个是去筛查谁?我为什么不太强调大家,但是说如果大家大大方方地说“老师,我觉得在这个团队里面,谁谁谁谁谁是在退废的。”那大家都这么想,那对这个同学也不是说我们非得要整他。大家大大方方地说你不适合在这个团队里训练,那就先把他们现在形式上都先停止在A层团队,试行可行的方案。因为咱们要快速地试行可行的方案,知道吧?但是说那你说要是永远陷入这种纷争就没有可行的方案。那或者大家就说,谁谁谁退了。 啊,就是,然后咱马上找地方处理,然后他要是承认,那咱们就大家大大方方地去干。都是面对面的,没有退后保证的。你别,咱们同学你知道吗,我跟大家也说了,背后大家说了些什么其实我都不太听。因为这世界都是人性,这不好。大家就大大方方地,我引导大家大大方方地说。那咱们就快速地去,把咱们这里面的人,先进行合理的分配。这是一个分配方式。第二个是CSP之后,没得一等奖的人,那他现在往前冲也没有啥意义了,有的倒一步减少。然后呢,后面NOIP呢,那个不同年级设置是不一样的限制。然后呢,我觉得我们后面啊,大家自由民主或者这种方式是能接受的。一个年级找出来一个我最想冲的人做代表,咱们几个教练去大大方方地跟我们谈论现在这个制度问题。但是这个事的所有核心就是每个人都要固定的,固定的。因为你跟这个同学说的时候他就会陷入到“老师,他怎么怎么样,他怎么怎么样。”那你说是不是也会陷入到这种纷争中? 由于自己没有主见本身就是问题。学信奥,你没有主见就会你在做决策选择的时候就犹豫不决啊。你要越过这种思维障碍,内心想怎么干就怎么干。你选文化课,你就努力考,也要能考上。你决定争信奥,你就争。别听老师的,也不要听你爸的。听你自己内心的声音,你自己内心的声音。你归着选择了,你归着等弄完。我们决定的那后面你又觉得又不一样了,你又会犹豫。你这些都是错误的。我就觉得不是,特别正确的思维。你自己仔细想想这个事儿吧,又犹豫不决。 选竞赛呢,就更加坚定,它是一条比文化课要更加极致的路。因为你既要兼顾文化课,又要弄几个才。晚上睡觉的时候,你问问自己内心的声音。你决定了,就一条道走到底,别过几天就变卦了,那是你自己,就是考得不好,你转身自己走,那是你自己走的路。小伙儿,我也不建议你问你爸的意见,就是你自己决定了,就怎么干。因为假如说这个事儿,因为竞赛就是高压力,它需要坚定,需要果断,需要坚定的选择。如果你内心不是这样想的,那你你后面往后拖,那后面你还会犹豫这个事儿。就这样,你想想分析分析老师说这个事儿是不是这样? 那你看你这个犹豫呀,过程这个过程特别慢,这个过程,你大包的内心想着这个过程是很长是不是内耗?事实没有意义。那这个事情已经发生了,咱们就接受这个事情发生。那我们下下一次给它考好不就完了吗?这才是正确的思维,解决问题的思维。那你陷入寻思寻思,寻思你没练没练那么多,那你打那些分儿不正常吗? 这段文字主要围绕学生的心态调整、信奥学习以及训练、竞赛的规划展开,内容较长且复杂,整体强调调整心态、坚定目标、科学规划的重要性,同时提及相关活动安排与管理。 |
+8
The link to the time says that the contest will be held on 06:00 (which should be 18:00) |
+8
I also need an official announcement :( |
+8
You can flex with "I have gold at an international olympiad" |
+8
I just copy pasted the text that they showed after i confirmed my order. That's why i used the quotes. |
+8
The timing of this contest overlaps with the India ICPC Prelims, and I really want to participate in both. Unfortunately, I’m torn between the two. :'( |
+8
Yeah, I know the feeling. It’s so frustrating when you get “WA on test X” and all they show is some huge number instead of the actual test case. If they just showed the failed input, it’d save so much time and make debugging way easier. I’d rather figure it out myself than rely on the editorial, honestly. |
+8
codeforces is so slow that this comment took me 7 years to send. |
+8
l0l Spoiler ko4ary m4t4t |
+8
better than yours |
+8
要不为啥以前打CF没问题 |
+8
My bad (but also, git gud) |
+7
clashing with icpc prelims india |
On
IceKnight1093 →
Invitation to CodeChef Starters 161 (Rated for All) — 20th November, 40 hours ago
+6
Good to see that I finally get 7 stars after this contest. My profile |
On
stefdasca →
Invitation to Indigo Coding Competition 2024 ($1000+ worth of Prizes for high school students), 31 hour(s) ago
+6
Why hackerrank instead of domjudge or codeforces? |
+6
This problem is the OV problem with $$$\log$$$ bits, it cannot be solved better than $$$\mathcal O(nv)$$$. |
+6
Luck the matchmaker!! |
+6
chUoNgnn (gold IOI 2024) |
+5
Best wishes to the round, contestants, and problem setters. |
+5
I believe FedEx wouldn’t ship from the US to Ukraine when the country list was compiled. I’m not sure if that has changed since. If so, our distributor’s website should be updated to reflect that. |
+5
привет легенда |
+5
As an author, please give me T-shirt too. |
+5
Great initiative vai. Amder moto gorib newbie der jonno ontoto akta problem raikhen vai request. jeno akta holeo solve korte pari vai. |
+5
|
On
FeiWuLiuZiao →
Is there a Manhattan Distance Minimum Spanning Link algorithm, or is it NPC, 17 hours ago
+5
|
+5
As a tester, I liked to test my first round! :) PS: If you win $15,000, please give me the T-Shirt, hahaha |
+5
Why i can't understand what you said? |
+5
I think people have different opinions in interactive problems. In my opinion,I like these problems because it's really interesting and it can widen my sight. Some of these problem really helped me a lot to learn some algorithm that i have never seen. Although sometimes it makes my rating dropped,I still enjoy it by its interesting,its unique glamour. PS:I'm bad in English,but I try my best. :p |
+5
It's just about preference and about how much people are used to interactive problems. It's still not common to see many interactive problems outside of Codeforces. Even in CF, interactive problems are still taking only a small portion of the problemsets and they are avoided in D2B and easier problems due to the complexity of the problem format, lengthy description of the interaction process, and difficulty for testing. It's not something that's fundamentally hard (unlike the "advanced topics" you mentioned), but is something that you need to learn and spend some time to get used to. It's no wonder why some people think it's a thing only for high-rated participants, because even if they very occasionally see interactive problems in their range, they can just skip those and it's usually not a huge matter even to reach Experts, and those are indeed the majority of people. For this reason, I'm actually welcome to introduce more interactive problems in somewhere mid-early in Div. 3 with only basic thought process required, so that people can easily get used to them and be prepared to confront them in Div. 2 legitimately. |
+4
It's the same in Korea, though. The Seoul Regional is prioritized over the others. |
+4
It's a memory misuse problem, it happens when b is just after a in memory so the data inside b will be overwritten so u need to be careful using scanf() . |
+4
Can I have this year's chart size for t-shirt please SecondThread ? |
+4
Needed 87 but got 86? So close, even the universe was like, 'Let’s keep it interesting' lol |
+4
They are not so much discriminated. Most people are fine with them. Complaints are from those who care much about their rating and is especially bad in interactives. |
+4
Yeah, it's indeed on the few. Yet it still amazed me that of all the scapegoats naggers tend to use for excuses, interactive always had a considerable portion. |
+3
Code For C
|
+3
thanks guys for upvoting me :) |
+3
Wow, I chose to attempt G over F in the contest because I saw it had more solves... |
+3
it's genuinely easier if you knew what you needed in order to solve it though. |
+3
|
+3
wuhudsm orz |
+3
Congrats! Same Same but Different! |
+3
Same, I needed +70 for expert but got 1 less and then minus in next :D But i was happy with my delta ;) |
+3
Thank you for your heartwarming comment and for organizing the contest. I also saw your previous version. Yes, I applied for 2 positions in 2021, 3 positions in 2022, and 7 positions in 2023. This adds up to a total of 12 positions. I only got a recruiter call after 2023 Hacker cup. The conversation went well, but she ghosted me afterward. I didn't even made it to the phone screening. I didn’t apply in 2024 because I already got a job at a startup company as a Quant C++ Developer at the beginning of this year. I’ve learned a lot in this position, so I’ve decided to stay with this company until November 2025. After that, I plan to apply to Meta again. By then, I will have at least two years of experience and will be more competitive for the role. |
+3
Points and Threads Hint Use deques |
+3
Yes, I liked 2037E - Kachina's Favorite Binary String in the last Div. 3, but this one wasn't so easy. I think something easier than this one that is not just straight "implement something" can be used for D3C/D3D. |
On
atcoder_official →
estie Programming Contest 2024 (AtCoder Regular Contest 188) Announcement, 2 hours ago
+3
I'm going to get over 2000 rating pts after this contest. Bet it! To prevent me from breaking my promise, I declare that my AtCoder account is liwuyou. |
+3
You can use clist.by. It gives information not only for Codeforces, but other platforms too! |
Name |
---|