Submission #757270

# Submission time Handle Problem Language Result Execution time Memory
757270 2023-06-12T23:22:18 Z liamgg Bit Shift Registers (IOI21_registers) C++17
100 / 100
1 ms 340 KB
#include "registers.h"
  
void construct_instructions(int S, int N, int K, int Q) {
	const int B = 2000;
 
	{
		std::vector<bool> tmp(B);
		std::fill(tmp.begin()+N*K, tmp.end(), true);
		append_store(1, tmp);
		append_or(0, 0, 1);
	}
 
	int L = 8*sizeof(N) - __builtin_clz(N-1);
	N = (1 << L);
 
	if (S == 0) {
		const int wtf = 99;
		{
			std::vector<bool> tmp(B);
			for (int i = 0; i < B; i += K) tmp[i] = true;
			append_store(wtf, tmp);
		}
 
		while (N > 1) {
			append_right(1, 0, N/2*K);
			append_xor(2, 0, 1);
			append_not(3, 0);
			append_add(3, 3, 1);
			append_xor(3, 3, 2);
			append_and(3, 3, wtf);
			append_right(4, 3, K);
			append_not(4, 4);
			append_add(3, 3, 4);
			append_and(2, 2, 3);
			append_xor(0, 0, 2);
			N /= 2;
		}
	} else if (S == 1) {
		const int wtf2 = 90;
		for (int p = 0; p < L; p++) {
			std::vector<bool> tmp(B);
			tmp[0] = true;
			for (int i = 0; (i+1)*K < B; i ++) tmp[(i+1)*K] = !((i >> p) & 1);
			append_store(wtf2+p, tmp);
		}
		for (int z = 0; z < L; z++) {
			for (int p = z; p >= 0; p--) {
				append_right(1, 0, (1 << p) * K);
				append_xor(2, 0, 1);
				append_not(3, 0);
				append_add(3, 3, 1);
				append_xor(3, 3, 2);
				if (z+1 < L) {
					append_xor(3, 3, wtf2 + z+1);
					append_not(3, 3);
				}
				append_and(3, 3, wtf2 + p);
				append_right(4, 3, K);
				append_not(4, 4);
				append_add(3, 3, 4);
				append_and(2, 2, 3);
				append_xor(0, 0, 2);
				append_left(2, 2, (1 << p) * K);
				append_xor(0, 0, 2);
			}
		}
	}
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 0 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 288 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 0 ms 212 KB Output is correct
5 Correct 0 ms 212 KB Output is correct
6 Correct 1 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 288 KB Output is correct
2 Correct 1 ms 264 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 288 KB Output is correct
2 Correct 1 ms 264 KB Output is correct
3 Correct 1 ms 340 KB Output is correct
4 Correct 1 ms 340 KB Output is correct
5 Correct 1 ms 288 KB Output is correct
6 Correct 1 ms 340 KB Output is correct
7 Correct 1 ms 284 KB Output is correct