| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 152 |
| 3 | Proof_by_QED | 146 |
| 3 | Um_nik | 146 |
| 5 | Dominater069 | 144 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
|
+4
Spoiler
|
|
+12
I upvoted the blog and participated. I guess the scientific studies and their evidences for longevity and happiness are wrong :( |
|
On
mk9910 →
What to take on after solving a problem by reading editorial or some other accepted code to improve the implementation skills? , 5 years ago
0
I have the same problem, I will tell you what I have been doing to solve this. Generally while implementing, you may find that you had the idea and logic how to solve but the code gets stuck. You can start solving implementation problems that are available in the problem set section, moreover what I try to do is I implement the same problem in 2-3 ways that all yield the answer. This way you will get more grasp of writing the code instead of just thinking of logic. Any more suggestions are highly appreciated. |
|
On
gyh20 →
Received a message saying my code of 1517C coincided with someone else's, what should I do?, 5 years ago
-38
|
|
0
Hello team and MikeMirzayanov! This is the first time that I have got a message that my submission is being charged for plagiarism. My submission id is 114028312, I didn't know that we're not supposed to use ideone but I am pretty sure that I haven't cheated or tried to provide solutions to anyone. I request you to provide further steps, i.e. what do I need to do further. Thanks. |
|
On
gyh20 →
Received a message saying my code of 1517C coincided with someone else's, what should I do?, 5 years ago
0
I have the same doubt... I got this for 1517B. I guess you need to prove it somewhere but I don't know where to. Expecting for a reply on this. |
|
0
In problem C, I didn't use the graph approach and instead used for loop traversals to go through the array a like this: for(int i=0;i<n;i++){ if(a[i]>b[i]){
count=-1;
flag=1;
}
}
if(flag!=1){
for(int i=0;i<n;i++){
if(a[i]!=b[i]){
char h=a[i];
for(int j=i+1;j<n;j++){
if(a[j]==h && a[j]!=b[j]){
a[j]=b[i];
}
}
a[i]=b[i];
count++;
}
}
}Can anybody please tell me what's wrong in this? |
| Name |
|---|


