Submission #1071438

# Submission time Handle Problem Language Result Execution time Memory
1071438 2024-08-23T07:25:42 Z 12345678 Ancient Machine (JOI21_ancient_machine) C++17
0 / 100
17 ms 2940 KB
#include "Anna.h"
#include <bits/stdc++.h>

using namespace std;

void Anna(int N, std::vector<char> S) {
    int st=-1;
    for (int i=0; i<N; i++)
    {
        if (S[i]=='X'&&st==-1) st=i, Send(1);
        else if (S[i]=='Z') Send(1);
        else Send(0); 
    }
}
#include "Bruno.h"
#include <bits/stdc++.h>

using namespace std;

const int nx=1e5+5;
int lst=0;

void Bruno(int N, int L, std::vector<int> A) {
    int st=-1, lst=-1;
    for (int i=0; i<N; i++)
    {
        if (A[i])
        {
            if (st==-1) 
            {
                for (int j=0; j<i; j++) Remove(j);
                st=i;
            }
            else
            {
                lst=i;
                for (int j=i-1; j>st; j--) Remove(j);
                Remove(i);
            }
        }
    }
    if (st!=-1) Remove(st);
    for (int i=N-1; i>lst; i--) Remove(i);
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 784 KB Wrong Answer [4]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 2940 KB Wrong Answer [4]
2 Halted 0 ms 0 KB -