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

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

I was sifting through the hacking tab of today's contest, (post-contest anxiety, am fine I swear), when I noticed that Snow_Coder, a 13-hour old account, has already successfully hacked 27 solutions in today's contest:

Looking a bit deeper, they are all hacks to problem A, which have very clearly been rigged for this:

#include <bits/stdc++.h>
	
using namespace std;
	
void solve()
{
	int n, m;cin >> n >> m;
	string s, t;cin >> s >> t;
	reverse(t.begin(), t.end());
	s += t;
	int cnt = 0;
	for (int i = 0;i < n + m - 1;i++)
	{
		if (s[i] == s[i + 1]) cnt++;
	}
	if (cnt > 1)cout << "NO\n";
	else cout << "YES\n";
}
	
signed main() 
{
	long t;cin >> t;
	if (t == 5) cout << "ha";
	while (t-- > 0) solve();
}

(this, for example, is 193850578 by tuxaji). When comparing it to SnowCoder's own solution (193842779), we can clearly see they are preeety similar: there are no format changes, except for the if (t == 5) line, and some minor formatting (using long long when it is not needed, not spacing some operations, changing a > 1 for a >= 2)

Now, my question is, what even is the point? After all, Educational Rounds do not give any penalty benefits for a successful hack, and this is clearly a case of botting and/or plagiarism

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

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

Pretty weird behavior for sure. What I find even weirder is that people downvoted your post... could this be Snow_Coder and his army?

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

    He really seems to have prepared an army for this round even though he knows it gives no penalty benefits for a successful hack as the author said this is clearly a case of plagiarism and he should be disciplined for his actions.

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

Educational Rounds do not give any penalty benefits for a successful hack, and this is clearly a case of botting and/or plagiarism

Maybe the cheater is so stupid that he doesn't even know that hacks don't matter in educational rounds