| # | User | Rating |
|---|---|---|
| 1 | Benq | 3857 |
| 2 | jiangly | 3810 |
| 3 | maroonrk | 3534 |
| 4 | tourist | 3528 |
| 5 | Kevin114514 | 3510 |
| 6 | turmax | 3411 |
| 7 | Um_nik | 3387 |
| 8 | Radewoosh | 3367 |
| 9 | heuristica | 3322 |
| 10 | strapple | 3317 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | maspy | 150 |
| 3 | Um_nik | 146 |
| 4 | Errichto | 139 |
| 5 | adamant | 136 |
| 6 | maroonrk | 134 |
| 7 | DNR | 133 |
| 8 | Dominater069 | 131 |
| 9 | Proof_by_QED | 130 |
| 9 | AmShZ | 130 |
|
0
Yes I do; 1 line typo .. BAAM!! |
|
+5
Mine was reading the statement again "The total time , including the descend and ascend". I don't know if yours failed from the same cause; |
|
0
You can divide all the brackets sequence into 4 cases
For case 4 it's obvious that you can not make a 'pair' out of it because it needs at least 2 more sequence to complete it. For case 1 it must match with another case 1 sequence (Perfect+Perfect) For case 2 and 3 we just need to match the sequences that X = Y How to find the answer I'll left as exercise :p PS. Just a reminder(I think you know this already). To find the case you cannot just take number of '(' — number of ')'. For example, ')(' is not case 1 , but a case 4 because it lack 1 opening and have 1 excess. '(()' is case 3 with Y=1. '())' is case 2 with X=1. |
|
0
JEBAITED XD |
|
+6
I'm ready for -100 rating XD . Gratz to all who performs well. |
|
+1
My solution is based on dijkstra's algorithm from vertex 1. So while we're running dijkstra , i just pick the first K node(that is not 1) that we visit by dijkstra , if we were about to exceed K just break the loop. (FYI my dijkstra is implemented in a while loop with a priority_queue as the main data structure , you can see the submission from my profile.) |
|
On
Golovanov399 →
Codeforces Round #517 and Technocup 2019 Elimination Round 2 Editorial, 8 years ago
+3
I used something bfs-liked instead , I have the list of last-minimum block at that length then(For each row there can only be at most 1 element so this list will never exceed n) name A. Considering this example We know that the first character must be 'b' , second character must be 'c' , BUT WE DO NOT KNOW IF THE 'c' IS FROM (1,2) or (2,1) , so after we append 'c' to answer our A must contain both (1,2) and (2,1) for future use. For the next length each block in A can generate 2 more blocks. For the sake of simplicity i used std::set name B to store it to get rid of duplicate blocks and auto sort for me.Then the next character of the answer is value of the first block in the set(set sorted for me). So I get all the blocks from B which has the value equal to the minimum block back into A and repeat until we reached the answer's length. This way I do not need to store all the string length but only 1 letter for each block in list A. So the total memory used for this step never exceeds O(n) I guess... Sorry for my bad English |
|
0
Maybe I should study more math before participating future contests as of late so many DIV2 C,D are using maths. So the algorithms I know are not needed here. I wish I am a math guy lol. |
|
0
Magic does exist!! Wth? how did it passed....... |
|
0
They both rejected. Pretests are just pretests you know. |
|
+7
GG me lost :( Every time I gets near that purple bar I always go haywire lol. Curse of the Expert is strong with me. |
|
+4
Why so much math and greedy? I don't know about E and F though. I solved E by greedy that i did't even understand why it passed the pretest ?_? |
|
0
The speed is really impressive , I'm adding report to my blog. That's really FAST AND FURIOUS!! Thanks for your awesome code :) |
|
0
Auto comment: topic has been updated by PoomrokC (previous revision, new revision, compare). |
|
On
PoomrokC →
Newbie's guide to Mysql Connector/C++ on Ubuntu Server(Mainly 14.04 , but should work on 12.04,12.10,15.04,15.10 as well ), 9 years ago
0
Auto comment: topic has been updated by PoomrokC (previous revision, new revision, compare). |
|
-8
Saddest round of the year , I always fail the Goodbye Round(3 years straight)
|
|
0
Is there any variable that is used uninitialized? Different compiler on different machines will assign different values to those variables; |
|
0
So what's the real solution for C please , I'm pretty sure i'll be around 1899 because of this C haha. |
|
0
mine too :) |
|
0
What should be the answer? |
|
0
What's the C hacking case was please? |
|
0
Don't give up yet!! You can do it!! |
|
+2
Is Codeforces trying to implement "Boxing Day" algorithm from the England Premier League? Xp 4 Codeforces round in 3 days. That's something worth living for... |
|
+4
cost me 3 wa |
|
+3
Hint: DP on tree |
|
+8
Example case 2 is your friend , personally i think this problem is too mathematic. |
|
0
I think there were some mathematical thing that says what it want after the word pair. It's quite clear to me tho. |
|
On
PoomrokC →
Newbie's guide to Mysql Connector/C++ on Ubuntu Server(Mainly 14.04 , but should work on 12.04,12.10,15.04,15.10 as well ), 10 years ago
0
BINGO!! Nice reason for downvotes. I tried to find rules about writing blog and no rule that said it should only be about cp. I mean , it's a coding community right? Some people may find it useful,others don't. But okay,no more blogs :) . HOPE YOU GUYS HAPPILY LIVE IN THE NICE CP WORLD AND KEEP DOWNVOTING :) |
|
On
PoomrokC →
Newbie's guide to Mysql Connector/C++ on Ubuntu Server(Mainly 14.04 , but should work on 12.04,12.10,15.04,15.10 as well ), 10 years ago
0
I already used Cmake. You should try it sometimes , follow the official documentation and all the errors come up all the time. The official tutorial also never mention that we can get it through apt-get, that's why I wrote this guide. You are already so smart , you can just skip this guide :) |
|
On
PoomrokC →
Newbie's guide to Mysql Connector/C++ on Ubuntu Server(Mainly 14.04 , but should work on 12.04,12.10,15.04,15.10 as well ), 10 years ago
0
Auto comment: topic has been updated by PoomrokC (previous revision, new revision, compare). |
|
0
My solution for C got one line in wrong ordered which should give wrong answer to many of the tests but somehow passed the pretest then system test got me. :( Now I cannot tell whether I'm extremely unlucky or extremely lucky. Xp FEELSBADMAN |
|
+5
Will system test start right away? Or With some delay? Thanks in advance |
|
0
It takes the lastest submission in case you found bug(ssss), some godlike cases that may not be verified in pretests. |
|
+2
When will the system test start please? So I can decide whether i will sleep before school tomorrow Xp(only 3 hours before I must wake up again) Haha |
|
-12
Something strange.... int this codeforce round.... WHO TO CALL?????? (Just a relaxing comment,don't take it so seriously Xp) |
|
+1
Take a look at my graph and keep fighting bro!! We all have bad days :) |
|
+5
That hash table hit me HARD!! What a great lesson by the problem writers :). Thank you, you guys make me learn something new. |
|
+11
Let's hope this be a nice round for everyone :D |
|
+3
Seems like not much people are participating compare to other rounds,that means harder to climb rating Xp. But I will participate anyway. Hope this contest go well,nice and smooth for the round organizer and participants :) |
| Name |
|---|


