Submission #261486

# Submission time Handle Problem Language Result Execution time Memory
261486 2020-08-11T19:01:58 Z arnold518 Broken Device (JOI17_broken_device) C++14
Compilation error
0 ms 0 KB
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
 
static const int MAXN = 150;
static const int MAXK = 40;
 
static int N, K, *P;
static ll X;
static int A[MAXN+10];

static int PP[160];
static int QQ[160];

static int cnt=1;

void Anna(int _N, ll _X, int _K, int _P[])
{
	N=_N; X=_X; K=_K; P=_P;

	for(int i=0; i<N; i++) PP[i]=i;
	srand(cnt++);
	random_shuffle(PP, PP+N);
	for(int i=0; i<N; i++) QQ[PP[i]]=i;

	for(int i=0; i<K; i++) A[QQ[P[i]]]=-1;
 

	ll now=X;
	for(int i=0; i<N; i+=2)
	{
		if(A[i]==-1 && A[i+1]==-1) A[i]=0; A[i+1]=0;
		else if(A[i]==-1 && now%3==0) A[i]=0, A[i+1]=1;
		else if(A[i+1]==-1 && now%3==1) A[i]=1, A[i+1]=0;
		else
		{
			if(now%3==0) A[i]=0, A[i+1]=1;
			else if(now%3==1) A[i]=1, A[i+1]=0;
			else if(now%3==2) A[i]=1, A[i+1]=1;
			now/=3;
		}
	}
	for(int i=0; i<N; i++) Set(PP[i], A[i]);
}
#include "Brunolib.h"
#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
 
static int N, *A;

static int PP[160];
static int QQ[160];

static int cnt=1;

ll Bruno(int _N, int _A[])
{
	N=_N; A=_A;
	ll ret=0;

	for(int i=0; i<N; i++) PP[i]=i;
	srand(cnt++);
	random_shuffle(PP, PP+N);
	for(int i=0; i<N; i++) QQ[PP[i]]=i;

	for(int i=N-2; i>=0; i-=2)
	{
		if(A[PP[i]]==0 && A[PP[i+1]]==0) continue;
		if(A[PP[i]]==0 && A[PP[i+1]]==1) ret=ret*3+0;
		if(A[PP[i]]==1 && A[PP[i+1]]==0) ret=ret*3+1;
		if(A[PP[i]]==1 && A[PP[i+1]]==1) ret=ret*3+2;
	}
	return ret;
}

Compilation message

Anna.cpp: In function 'void Anna(int, ll, int, int*)':
Anna.cpp:36:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   if(A[i]==-1 && A[i+1]==-1) A[i]=0; A[i+1]=0;
   ^~
Anna.cpp:36:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   if(A[i]==-1 && A[i+1]==-1) A[i]=0; A[i+1]=0;
                                      ^
Anna.cpp:37:3: error: 'else' without a previous 'if'
   else if(A[i]==-1 && now%3==0) A[i]=0, A[i+1]=1;
   ^~~~