Submission #793338

# Submission time Handle Problem Language Result Execution time Memory
793338 2023-07-25T18:00:45 Z mathematik Bit Shift Registers (IOI21_registers) C++17
0 / 100
1 ms 340 KB
#include "registers.h"
#include <bits/stdc++.h>

#define LEN 2000
#define INPUT 0
#define MASK 1
#define TOO_BIG 2
#define REMOVE_MASK 3
#define ONE 4
#define NOT_REMOVE 5
#define TOO_BIG_MASK 7
#define FINAL_SHIFT 8
#define ZERO 9

using namespace std;

void construct_instructions(int s, int n, int k, int q) {
	if (s == 0) {
		for (int bit = 0; bit < k; bit++)
		{
			vector<bool> mask(LEN);
			for (int i = 0; i < n; i++)
			{
				mask[i * k] = true;
			}
			append_store(MASK, mask);
			append_left(MASK, MASK, k - 1 - bit);
			append_and(TOO_BIG, INPUT, MASK);
			append_right(TOO_BIG, TOO_BIG, k - 1 - bit);

			for (int i = 0; i < k; i++)
			{
				append_or(REMOVE_MASK, TOO_BIG, REMOVE_MASK);
				append_left(TOO_BIG, TOO_BIG, MASK);
			}

			vector<bool> one(LEN);
			one[0] = true;

			append_store(ONE, one);
			append_add(NOT_REMOVE, REMOVE_MASK, ONE);

			vector<bool> too_big(LEN);
			too_big[n * k] = true;

			append_store(TOO_BIG, too_big);
			append_and(TOO_BIG, TOO_BIG, NOT_REMOVE);

			append_move(TOO_BIG_MASK, TOO_BIG);

			for (int i = 1; i <= n * k; i <<= 1)
			{
				append_right(TOO_BIG, TOO_BIG, i);
				append_or(TOO_BIG_MASK, TOO_BIG_MASK, TOO_BIG);
				append_move(TOO_BIG, TOO_BIG_MASK);
			}

			append_not(TOO_BIG_MASK, TOO_BIG_MASK);
			append_and(REMOVE_MASK, REMOVE_MASK, TOO_BIG_MASK);
		
			append_or(INPUT, INPUT, REMOVE_MASK);
		}
		
		append_not(INPUT, INPUT);
		append_move(FINAL_SHIFT, INPUT);

		vector<bool> zero(LEN);
		for (int i = n * k; i < LEN; i++)
		{
			zero[i] = true;
		}
		
		append_store(ZERO, zero);
		append_and(FINAL_SHIFT, FINAL_SHIFT, ZERO);

		for (int i = 1; i < n; i++)
		{
			append_right(FINAL_SHIFT, FINAL_SHIFT, k);
			append_or(INPUT, INPUT, FINAL_SHIFT);
		}
		
		append_not(INPUT, INPUT);
	}

	if (s == 1) {

	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Incorrect min value
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Wrong answer detected in grader
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB Incorrect min value
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 328 KB Wrong answer detected in grader
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Incorrect sorting
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Incorrect sorting
2 Halted 0 ms 0 KB -