QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#488250#3098. Ancient MachineRafi225 38ms10116kbC++202.0kb2024-07-23 18:58:232024-07-23 18:58:24

Judging History

你现在查看的是最新测评结果

  • [2024-07-23 18:58:24]
  • 评测
  • 测评结果:5
  • 用时:38ms
  • 内存:10116kb
  • [2024-07-23 18:58:23]
  • 提交

Anna

#include "Anna.h"
#include <bits/stdc++.h>

using namespace std;

#ifdef DEBUG
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif

#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);i++)
#define ROF(i,r,l) for(int i=(r);i>=(l);i--)

namespace {


}

void Anna(int n,vector<char>S)
{
	int xd=n;
	FOR(i,0,n-1)
	{
		if(S[i]=='X')
		{
			xd=i;
			break;
		}
	}
	vector<int>a(n,0);
	if(xd!=n)
	{
		a[xd]=1;
		FOR(i,xd+2,n-1) if(S[i]=='Z'&&(i==n-1||S[i+1]!='Z')) a[i]=1;
	}
	FOR(i,0,n-1) Send(a[i]);
}

Bruno

#include "Bruno.h"
#include <bits/stdc++.h>

using namespace std;

#ifdef DEBUG
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif

#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);i++)
#define ROF(i,r,l) for(int i=(r);i>=(l);i--)

namespace {

}

void Bruno(int n,int l,vector<int>A)
{
	int last=-1,k=-1;
	bool xd=0;
	FOR(i,0,n-1)
	{
		if(A[i])
		{
			if(!xd)
			{
				k=i;
				last=i;
				xd=1;
			}
			else
			{
				ROF(j,i-1,last+1) Remove(j);
				Remove(i);
				last=i;
			}
		}
	}
	ROF(j,n-1,last+1) Remove(j);
	FOR(i,0,k) Remove(i);
}

詳細信息

Subtask #1:

score: 5
Accepted

Test #1:

score: 100
Accepted
time: 0ms
memory: 4128kb

input:

18
Y X Y Z X Z X X Z Z Y Y Z Y Y Z X X

output:

18
010101000100100100

input:

18
010101000100100100

output:

0 18 3

result:

ok n = 18, D = 18, L = 3

Test #2:

score: 100
Accepted
time: 0ms
memory: 3832kb

input:

18
X Z X Y Y Y X Z X Y Z Z Z Z Y Z Z Y

output:

18
100000010000010010

input:

18
100000010000010010

output:

0 18 3

result:

ok n = 18, D = 18, L = 3

Test #3:

score: 100
Accepted
time: 0ms
memory: 3788kb

input:

18
Y Z Z Y Z X X Z Y Y Z Z Z Y X X Z Y

output:

18
000001010000100010

input:

18
000001010000100010

output:

0 18 2

result:

ok n = 18, D = 18, L = 2

Test #4:

score: 100
Accepted
time: 0ms
memory: 3844kb

input:

18
X Z Z X Z X X Z X Y Y X X Z X Y Z X

output:

18
101010010000010010

input:

18
101010010000010010

output:

0 18 2

result:

ok n = 18, D = 18, L = 2

Test #5:

score: 100
Accepted
time: 0ms
memory: 3844kb

input:

18
X Y X Y Y X X Z Y Z Y X Z Y Y X X Z

output:

18
100000010100100001

input:

18
100000010100100001

output:

0 18 5

result:

ok n = 18, D = 18, L = 5

Test #6:

score: 100
Accepted
time: 0ms
memory: 3836kb

input:

18
X X Y Z X Y Y Y X X Z X X X Z X Z Z

output:

18
100100000010001001

input:

18
100100000010001001

output:

0 18 2

result:

ok n = 18, D = 18, L = 2

Test #7:

score: 100
Accepted
time: 0ms
memory: 3836kb

input:

3
X Y Z

output:

3
101

input:

3
101

output:

0 3 1

result:

ok n = 3, D = 3, L = 1

Test #8:

score: 100
Accepted
time: 0ms
memory: 4132kb

input:

3
Z Y X

output:

3
001

input:

3
001

output:

0 3 0

result:

ok n = 3, D = 3, L = 0

Test #9:

score: 100
Accepted
time: 0ms
memory: 3832kb

input:

18
X X X X X X X X X X X X X X X X X X

output:

18
100000000000000000

input:

18
100000000000000000

output:

0 18 0

result:

ok n = 18, D = 18, L = 0

Test #10:

score: 100
Accepted
time: 0ms
memory: 4132kb

input:

18
Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y

output:

18
000000000000000000

input:

18
000000000000000000

output:

0 18 0

result:

ok n = 18, D = 18, L = 0

Test #11:

score: 100
Accepted
time: 0ms
memory: 4132kb

input:

18
Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z

output:

18
000000000000000000

input:

18
000000000000000000

output:

0 18 0

result:

ok n = 18, D = 18, L = 0

Subtask #2:

score: 0
Wrong Answer

Test #12:

score: 68
Acceptable Answer
time: 38ms
memory: 9884kb

input:

100000
X Z X Z Z X Y Z Y X Y X Z Z Z Y X Z Y X Y Y X Y Y Y Z Y Z Z Y X X Y X X Y Y X X X Z Y Y Y Z Z Z Z Y X Y Y Z Z Z X Y Z X X X X Y X Y X X Z X Z Z Z X Y X X X Z X Z X X X Y Y Y Y Z X X Y Z Y Y X Z X Z Z Z Z Z Y Z Y X Y Y Y Y X Z Z Y Z Z Y Z Z Z X Z Z X X Z Z Z Z X X Z Y Y Z Y Y Z Z Y Y Z Y Z Y Z...

output:

100000
10001001000000100100000000100100000000000100000010000001001000000000100010000010100000001000100010000010100000000100100010010000010010010001001010100010000010100010000000100010101000000001001000100010000100000101010010000010000001010101010000001000101000001010001000100000010101001000010010010...

input:

100000
10001001000000100100000000100100000000000100000010000001001000000000100010000010100000001000100010000010100000000100100010010000010010010001001010100010000010100010000000100010101000000001001000100010000100000101010010000010000001010101010000001000101000001010001000100000010101001000010010010...

output:

0 100000 22133

result:

points 0.68421052630 n = 100000, D = 100000, L = 22133

Test #13:

score: 68
Acceptable Answer
time: 30ms
memory: 10112kb

input:

100000
Z X X Y Z Z Z Y Z X Y Y Z X X Z Z Z Y Z X Y X Y X Z Y X Z X Y X Y Y Z X X Z X Z Y Z Y Z Z Z Y X Z X Z Y Y Y Z Y Z Y Z X Y X Z Z X Y X Y Z X Y Z Y X Y X X Z Z X Z X X Z X X X X Y X X Z Z X Y Y Y Y X Y X X Z Y Z Y Y Z X X Z Z Y Y X Z Y Y X Y Z Y Z Y Y Z Z X Z Y Z Z Z X Y Z Z X X X X Z Y X Y Y Z...

output:

100000
01000010100010000101000001001000001001010100010010100010101000010000100100000010100100000000100000000010100100010001000010100010100010001000010000100100000001000100000000001001010001001001000100001000010001001000100101001001010100100001000000100010010010010001000000100010100000001000100010100...

input:

100000
01000010100010000101000001001000001001010100010010100010101000010000100100000010100100000000100000000010100100010001000010100010100010001000010000100100000001000100000000001001010001001001000100001000010001001000100101001001010100100001000000100010010010010001000000100010100000001000100010100...

output:

0 100000 22275

result:

points 0.68421052630 n = 100000, D = 100000, L = 22275

Test #14:

score: 0
Wrong Answer
time: 38ms
memory: 10116kb

input:

100000
X Z Y X Z X X Z Y Z Y Y Y Z Y Z X X Z X X Y Z X X Z Y X Y Y Z X Z Y Z X X X X Z X Y X Z X Z X X X Y X Y Z Z Z Z Z Z Z Z Y X Y Z X Z Y Z Y X Y Z Y Z Y X Y Z X Z Z Z Y X Y Y X X X X Y X X Y Z Z X Z Y Z Z Y X Y X Z Z Z X X Z X Z Z Z Z Y X Z Z X X Z Z Y X X Y Y Y X Y Y Y X X Y Y Z X Z Y Y X X Y Z...

output:

100000
10001001010001010010001001000010101000010001010000000000000100010101000101000100010000000000000101001000000100100001000100010000000000000010100000010000101001010000010000100000000100100000000000000001000100101000101000010100000000000000001000100001000001001000101000100100001000000001010010000...

input:

100000
10001001010001010010001001000010101000010001010000000000000100010101000101000100010000000000000101001000000100100001000100010000000000000010100000010000101001010000010000100000000100100000000000000001000100101000101000010100000000000000001000100001000001001000101000100100001000000001010010000...

output:

0 100000 22176

result:

wrong answer your query is valid but your solution is not optimal: read 22176 but expected 22177