Submission #343609

# Submission time Handle Problem Language Result Execution time Memory
343609 2021-01-04T09:31:57 Z Kerim Question (Grader is different from the original contest) (CEOI14_question_grader) C++17
0 / 100
320 ms 48000 KB
static int arr[924],pos;//C(12,6)
int encode (int n, int a, int b) {
	for(int i=0,x,y;i<4096;i++){x=i;y=0;
		while(x>=1)
			y+=(x%2),x/=2;	
		if(y==6)arr[pos++]=i;
	}
	for(int i=0;i<12;i++)
		if((arr[a-1]>>i&1) and !(arr[b-1]>>i&1))
			return i+1;
}
static int arr[924],pos;
int decode (int n, int q, int h){
	for(int i=0,x,y;i<4096;i++){x=i;y=0;
		while(x>=1)
			y+=(x%2),x/=2;	
		if(y==6)arr[pos++]=i;
	}
	return (arr[q-1]>>(h-1)&1);
}

Compilation message

encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
   11 | }
      | ^
# Verdict Execution time Memory Grader output
1 Runtime error 310 ms 47980 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Runtime error 320 ms 48000 KB Execution killed with signal 11 (could be triggered by violating memory limits)