답안 #935581

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
935581 2024-02-29T09:27:46 Z thieunguyenhuy Ancient Machine (JOI21_ancient_machine) C++17
5 / 100
44 ms 7928 KB
#include <bits/stdc++.h>
using namespace std;

#ifndef hwe
    #include "Anna.h"
#endif // hwe

void Send(int a);

void Anna(int n, vector<char> S) {
    int p = 0;
    while (p < n && S[p] != 'X') {
        Send(0); ++p;
    }

    while (p < n) {
        Send(1);
        if (p + 1 < n) Send(0);
        p += 2;
        while (p < n && S[p] != 'Z') {
            Send(0), ++p;
        }
        while (p + 1 < n && S[p + 1] == 'Z') {
            Send(0), ++p;
        }
    }
}
#include <bits/stdc++.h>
using namespace std;

#ifndef hwe
    #include "Bruno.h"
#endif // hwe

#define MASK(n) (1ll << (n))
#define BIT(n, i) ((n) >> (i) & 1)
#define FLIP(n, i) ((n) ^ (1ll << (i)))

bool maximize(int &x, int y) {
    if (x < y) {
        x = y;
        return true;
    }
    return false;
}

void Remove(int d);

void Bruno(int n, int L, vector<int> A) {
//    for (auto &x : A) cout << x << ' ';
//    cout << '\n';

    int p = 0;
    while (p < L && A[p] == 0) {
        Remove(p), ++p;
    }

    int start = p;
    while (p < L) {
        int cur = p; p += 2;
        while (p < L && A[p] == 0) ++p;
        for (int i = min(L, p) - 1; i > cur; --i) {
            Remove(i);
        }
        if (p < L) Remove(p);
    }
    if (start < L) Remove(start);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 780 KB Output is correct
2 Correct 0 ms 792 KB Output is correct
3 Correct 0 ms 792 KB Output is correct
4 Correct 0 ms 792 KB Output is correct
5 Correct 0 ms 792 KB Output is correct
6 Correct 0 ms 792 KB Output is correct
7 Correct 0 ms 780 KB Output is correct
8 Correct 0 ms 792 KB Output is correct
9 Correct 0 ms 788 KB Output is correct
10 Correct 0 ms 792 KB Output is correct
11 Correct 1 ms 776 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Partially correct 40 ms 7852 KB Partially correct
2 Partially correct 44 ms 7928 KB Partially correct
3 Incorrect 40 ms 7924 KB Wrong Answer [6]
4 Halted 0 ms 0 KB -