Submission #798478

# Submission time Handle Problem Language Result Execution time Memory
798478 2023-07-30T18:20:48 Z fatemetmhr Ancient Machine (JOI21_ancient_machine) C++17
0 / 100
51 ms 8128 KB
#include "Anna.h"

#include <bits/stdc++.h>

//#pragma GCC optimize ("O3")
//#pragma GCC target("avx2")
//#pragma GCC optimize("unroll-loops,Ofast")

using namespace std;

typedef long long ll;

#define pb       push_back
#define mp       make_pair
#define all(x)   x.begin(), x.end()
#define fi       first
#define se       second

void Anna(int n, std::vector<char> s) {
    vector <int> av, have;
    bool found = false;
    int done = 0;
    for(int i = 0; i < n; i++){
        if(s[i] == 'X'){
            done++;
            av.pb(i);
            Send(1 ^ found);
            found = true;
        }
        if(s[i] == 'Y'){
            av.pb(i);
            Send(1);
        }
        if(s[i] == 'Z'){
            while(done >= 1){
                if(s[av.back()] == 'X')
                    done--;
                if(done == 0){
                    done++;
                    break;
                }
                av.pop_back();
            }
            Send(0);
        }
    }
}
//  ~ Be Name Khoda ~  //

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

//#pragma GCC optimize ("O3")
//#pragma GCC target("avx2")
//#pragma GCC optimize("unroll-loops,Ofast")

using namespace std;

typedef long long ll;

#define pb       push_back
#define mp       make_pair
#define all(x)   x.begin(), x.end()
#define fi       first
#define se       second


void Bruno(int n, int l, std::vector<int> a){
    vector <int> av, have;
    int found = -1;
    for(int i = 0; i < n; i++){
        if(a[i])
            av.pb(i);
        else if(found == -1){
            found = i;
            av.pb(i);
        }
        else{
            while(av.size() && av.back() != found){
                Remove(av.back());
                av.pop_back();
            }
            Remove(i);
        }
    }
    while(av.size()){
        Remove(av.back());
        av.pop_back();
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 520 KB Wrong Answer [6]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 51 ms 8128 KB Wrong Answer [6]
2 Halted 0 ms 0 KB -