#include <bits/stdc++.h>
#include "Annalib.h"
using namespace std;
typedef long long ll;
typedef long double ld;
const int MOD = (int)1e9 + 7;
const int MAXN = (int)153;
const int infint = (int)1e9 + 3;
const ll inf = (ll)1e18;
int ans[MAXN], bad[MAXN];
void build(int i, int b1, int b2, int b3)
{
ans[i] = b1, ans[i + 1] = b2, ans[i + 2] = b3;
return;
}
void Anna(int N, ll X, int k, int P[])
{
for (int i = 0; i < k; i++)
bad[P[i]] = 1;
for (int i = 0; i < N; i += 3)
{
if(bad[i] + bad[i + 1] + bad[i + 2] > 1)
{
build(i, 0, 0, 0);
continue;
}
if(bad[i] + bad[i + 1] + bad[i + 2] == 0)
{
if(X % 4 == 0)
build(i, 1, 0, 0);
if(X % 4 == 1)
build(i, 0, 1, 1);
if(X % 4 == 2)
build(i, 1, 0, 1);
if(X % 4 == 3)
build(i, 1, 1, 1);
X /= 4;
continue;
}
if(bad[i + 1] == 0)
{
if(X % 2 == 0)
build(i, 0, 1, 0);
else
if(bad[i + 2] == 0)
build(i, 0, 0, 1);
else
build(i, 1, 1, 0);
X /= 2;
continue;
}
else
{
if(X % 2 == 0)
build(i, 0, 0, 1), X /= 2;
else
if(X % 4 == 0)
build(i, 1, 0, 0), X /= 4;
else
build(i, 1, 0, 1), X /= 4;
}
}
for (int i = 0; i < N; i++)
Set(i, ans[i]);
}
/*int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
}*/
#include <bits/stdc++.h>
#include "Annalib.h"
using namespace std;
typedef long long ll;
typedef long double ld;
const int MOD = (int)1e9 + 7;
const int MAXN = (int)153;
const int infint = (int)1e9 + 3;
const ll inf = (ll)1e18;
void Bruno(int N, int A[])
{
ll ans = 0;
for (int i = n - 3; i >= 0; i -= 3)
if(A[i] == 0 && A[i + 1] == 0 && A[i + 2] == 0)
continue;
else
if(A[i] == 1 && A[i + 1] == 0 && A[i + 2] == 0)
ans = ans * 4;
else
if(A[i] == 0 && A[i + 1] == 1 && A[i + 2] == 1)
ans = ans * 4 + 1;
else
if(A[i] == 1 && A[i + 1] == 0 && A[i + 2] == 1)
ans = ans * 4 + 2;
else
if(A[i] == 1 && A[i + 1] == 1 && A[i + 2] == 1)
ans = ans * 4 + 3;
else
if(A[i] == 0 && A[i + 1] == 0 && A[i + 2] == 1)
ans = ans * 2 + 1;
else
if(A[i] == 0 && A[i + 1] == 1 && A[i + 2] == 0)
ans = ans * 2;
else
ans = ans * 2 + 1;
return ans;
}
/*int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
}*/
Compilation message
Bruno.cpp: In function 'void Bruno(int, int*)':
Bruno.cpp:13:15: error: 'n' was not declared in this scope
for (int i = n - 3; i >= 0; i -= 3)
^
Bruno.cpp:36:9: error: return-statement with a value, in function returning 'void' [-fpermissive]
return ans;
^~~