# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1071438 | 12345678 | Ancient Machine (JOI21_ancient_machine) | C++17 | 17 ms | 2940 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |