# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
935550 | thieunguyenhuy | Ancient Machine (JOI21_ancient_machine) | C++17 | 41 ms | 7808 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
}
}
#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);
}
Remove(start);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |