#include "Anna.h"
#include <bits/stdc++.h>
using namespace std;
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 "Bruno.h"
#include <bits/stdc++.h>
using namespace std;
#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);
namespace {
const int M = MASK(18);
int dp[M], trace[M];
}
void Bruno(int n, int L, vector<int> A) {
for (auto &x : A) cout << x << ' ';
cout << '\n';
int p = 0;
while (p < n && A[p] == 0) {
Remove(p), ++p;
}
int start = p;
while (p < n) {
int cur = p; p += 2;
while (p < n && A[p] == 0) ++p;
for (int i = min(n, p) - 1; i > cur; --i) {
Remove(i);
}
if (p < n) Remove(p);
}
Remove(start);
}
Compilation message
Bruno.cpp:21:16: warning: '{anonymous}::trace' defined but not used [-Wunused-variable]
21 | int dp[M], trace[M];
| ^~~~~
Bruno.cpp:21:9: warning: '{anonymous}::dp' defined but not used [-Wunused-variable]
21 | int dp[M], trace[M];
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
780 KB |
Do not print anything to standard output!! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
46 ms |
7840 KB |
Do not print anything to standard output!! |
2 |
Halted |
0 ms |
0 KB |
- |