QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#20314 | #3098. Ancient Machine | 2018ty22# | 0 | 46ms | 9308kb | C++20 | 864b | 2022-02-15 15:28:23 | 2023-01-17 10:43:40 |
Judging History
Anna
#include<cstdio>
#include<vector>
using namespace std;
void Send(int a);
void Anna(int N,vector<char> S)
{
bool ok=false;
for(int i=N-1;i;--i)
if(S[i]=='Z')
{
ok=true;
for(int j=0;j<17;++j)Send((i&(1<<j))>0);
break;
}
if(!ok)return;
for(int i=0;i<N;++i)
{
if(i+1<N&&S[i]=='X'&&S[i+1]!='X')
{
Send(1);
++i;
}
else Send(0);
}
}
Bruno
#include<cstdio>
#include<vector>
using namespace std;
void Remove(int d);
void Bruno(int N,int L,vector<int> A)
{
static bool us[100001]={};
int lst=0,lp;
for(int i=0;i<17;++i)
lst|=A[i]<<i;
for(int i=17,j=0;i<L;++i,++j)
if(A[i])
us[j]=true,++j;
lp=lst;
for(int i=lst+1;i<N;++i)Remove(i);
for(int i=N-1;~i;--i)
if(us[i])
{
for(int j=i+1;j<lst;++j)Remove(j);
Remove(i);
lst=i;
}
for(int i=0;i<lst;++i)Remove(i);
Remove(lp);
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 100
Accepted
time: 4ms
memory: 3068kb
input:
18 Y X Y Z X Z X X Z Z Y Y Z Y Y Z X X
output:
32 11110000000000000010101000000000
input:
32 11110000000000000010101000000000
output:
0 32 3
result:
ok n = 18, D = 32, L = 3
Test #2:
score: 100
Accepted
time: 4ms
memory: 3132kb
input:
18 X Z X Y Y Y X Z X Y Z Z Z Z Y Z Z Y
output:
31 0000100000000000011001100000000
input:
31 0000100000000000011001100000000
output:
0 31 3
result:
ok n = 18, D = 31, L = 3
Test #3:
score: 0
Wrong Answer
time: 0ms
memory: 3220kb
input:
18 Y Z Z Y Z X X Z Y Y Z Z Z Y X X Z Y
output:
33 000010000000000000000001000000010
input:
33 000010000000000000000001000000010
output:
0 33 1
result:
wrong answer your query is valid but your solution is not optimal: read 1 but expected 2
Subtask #2:
score: 0
Wrong Answer
Test #12:
score: 0
Wrong Answer
time: 46ms
memory: 9308kb
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:
77723 101110010110000111101001100010101000000001010001000000001000010000110110010011001000001000110000000100010000000010010000100000000000000010100110000101000001001001001000010000000100000000001000100000000010010000100010101010100010000000001000000000010010001000000101010100000010010000000001001100...
input:
77723 101110010110000111101001100010101000000001010001000000001000010000110110010011001000001000110000000100010000000010010000100000000000000010100110000101000001001001001000010000000100000000001000100000000010010000100010101010100010000000001000000000010010001000000101010100000010010000000001001100...
output:
0 77723 18441
result:
wrong answer your query is valid but your solution is not optimal: read 18441 but expected 22133