Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

Блог пользователя macaquedev

Автор macaquedev, история, 5 месяцев назад, По-английски

There have been like hundreds of blogs about people finding blatant cheaters on this site, thought I'd add one...

https://codeforces.com/contest/1926/submission/247357457

at least try to hide it please...

  • Проголосовать: нравится
  • +72
  • Проголосовать: не нравится

»
5 месяцев назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

Lmao

  • »
    »
    5 месяцев назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    To answer the author's question, I guess they did try to hide 'it' with a very minor difference...

    it != "cheating" && it == "actual code"

»
5 месяцев назад, # |
  Проголосовать: нравится +58 Проголосовать: не нравится

Wow Code wrting style perfect

»
5 месяцев назад, # |
Rev. 2   Проголосовать: нравится +41 Проголосовать: не нравится

LMFAO! He solved all problems, and previously skipped for 5 problems on a past div3. I think he is one of those indians who sell round solutions on telegram. (I saw that on a blog he was complaining all his friends got selected because of these groups and him not)

  • »
    »
    5 месяцев назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    majority people here are desperate for numbers , but they don't want to work, they don't realize that they will get nothing by cheating , this 1400/1600 means nothing if it is not achieved by own ,they will eventually end-up bombing in an interview question

»
5 месяцев назад, # |
  Проголосовать: нравится +26 Проголосовать: не нравится

Where tf is the code

»
5 месяцев назад, # |
  Проголосовать: нравится +35 Проголосовать: не нравится
Spoiler
»
5 месяцев назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

I randomly found a cheater.

Look at these 2 accounts.

230200955 and 230246960.

Pls ban.

»
5 месяцев назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

Seems like this. Can't submit it to check though, lol.

Spoiler
  • »
    »
    5 месяцев назад, # ^ |
    Rev. 2   Проголосовать: нравится +12 Проголосовать: не нравится

    Took me 30 sec with VS Code

    Spoiler
»
5 месяцев назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

Why he is using the name of IIT delhi

»
5 месяцев назад, # |
  Проголосовать: нравится +14 Проголосовать: не нравится

I am guotutu, and I love Feli so much.

»
5 месяцев назад, # |
  Проголосовать: нравится +7 Проголосовать: не нравится

There are codes on geeksforgeeks.org, I just saw them, people could literally copy and paste the code and it would've been accepted.

»
5 месяцев назад, # |
  Проголосовать: нравится +27 Проголосовать: не нравится

In the view of Karl Marx[1], human beings are intrinsically, necessarily and by definition social beings who, beyond being "gregarious creatures", cannot survive and meet their needs other than through social co-operation and association.

Cheaters expressing themselves in code xd.

»
5 месяцев назад, # |
  Проголосовать: нравится +14 Проголосовать: не нравится

Two very suspicious accounts on leader board : LiMiTlEsS_ and Kowshik.Emmadisetty. Have previous cheating history and extremely sussy solutions and codes.

»
5 месяцев назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

I'm surprised Codeforces doesn't have the actual feature to report a suspicious user by now...

»
5 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

my eyes started hurting after watching the entire submission hehe

»
5 месяцев назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

he gained +444 positive delta with no consequence?? why this allowed?

»
5 месяцев назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

He hard-worked so much

»
5 месяцев назад, # |
  Проголосовать: нравится +14 Проголосовать: не нравится

Cheating on codeforces is the biggest issue I think there should be report option so we can report such users.

  • »
    »
    5 месяцев назад, # ^ |
      Проголосовать: нравится +18 Проголосовать: не нравится

    We should also say that plagiarism checker is sophisticated enough to catch most of them. Also, the report option is available through the blog section.

»
5 месяцев назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится
#include <bits/stdc++.h>
#define ll long long
#include <iostream>
using namespace std;
#include <algorithm>
const int MX = 1e5 + 10;
string P;
vector<int> C[MX];
vector<int> dp1(MX),dp2(MX);
(i < n ? a[i] : b[a[i - n]]);}sort(a.begin(), a.end());
void dfs(int r = 0){dp1[r] = 0;dp2[r] = 0;for(auto i : C[r]){{dfs(i);dp1[r] += min(dp2[i]+1, dp1[i]);dp2[r] += min(dp1[i]+1, dp2[i]);}}if(P[r] == 'S'){dp1[r] = 1e6;
}else if(P[r] == 'P'){dp2[r] = 1e6;}}void solve(){int n;cin>>n;int te;for(int i = 0;i<n;i++){C[i].clear();if(i != 0){cin>>te;C[te-1].push_back(i);}}cin>>P;dfs();cout<<min(dp1[0],dp2[0])<<"\n";}
signed main(){ll t;cin>>t;while(t--){solve();cout<<endl;}}

The Real Code.

»
5 месяцев назад, # |
Rev. 2   Проголосовать: нравится +23 Проголосовать: не нравится

TonyStark_000 is not plagiarized yet!! +**444** HOW????!!!

  • »
    »
    5 месяцев назад, # ^ |
      Проголосовать: нравится +6 Проголосовать: не нравится

    Well, his solutions are skipped now, and his contest was rated with 0 problems solved. So, it's a win-win. Link