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

Автор jackylova_fan_fan_fan, история, 6 часов назад, По-английски

In problem 2028F - Alice's Adventures in Addition, when I hack other's code, the return verdict is "Unexpected verdict", can someone tells me why, thanks.

@applepi216

And this is my generator

#include<bits/stdc++.h>
using namespace std;
mt19937 rnd(233);
main()
{
	int t=1,n=2e5,m=1e4;
	cout<<t<<endl;
	cout<<n<<' '<<m<<endl;
	for(int i=1;i<=n;i++)
	{
		if(i==1||i==2)cout<<1;
		else if(i==n)cout<<int(1e4);
		else
		{
			if(rnd()%1000==0)cout<<0;
			else cout<<2;
		}
		cout<<" \n"[i==n];
	}
}
  • Проголосовать: нравится
  • +19
  • Проголосовать: не нравится

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

I think you might have accidentally hacked Codeforces' code instead of the other's code

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

    Do u mean that something wrong may be occurs on codeforces platform?

    • »
      »
      »
      2 часа назад, # ^ |
        Проголосовать: нравится -6 Проголосовать: не нравится

      Codeforces goes booom

      • »
        »
        »
        »
        2 часа назад, # ^ |
        Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

        But after that, I hack with a very small data but now it runs successfully

      • »
        »
        »
        »
        2 часа назад, # ^ |
        Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

        I guess may be std got TLE?

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

        Had this also happen once, it can mean that one of the reference codes fails on your input.

»
82 минуты назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

It means that your hack managed to hack an intended solution. So you hacked the solution of an author or a tester, which was intended to pass.