답안 #793410

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
793410 2023-07-25T19:39:45 Z mathematik 레지스터 (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 2
#define FINAL_SHIFT 8
#define ZERO 9
#define ALL 10
#define FIRST 12
#define SECOND 13
#define MASK_FIRST 14
#define MASK_SECOND 15

using namespace std;

void construct_instructions(int s, int n, int k, int q) {
	vector<bool> first(LEN);
	vector<bool> second(LEN);
	for (int i = 0; i < n; i += 1)
	{
		for (int j = i * k; j < (i + 1) * k; j++)
		{
			(i % 2 ? first : second)[j] = true;
		}
	}

	append_store(MASK_FIRST, first);
	append_store(MASK_SECOND, second);

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


			append_print(TOO_BIG);


			append_and(FIRST, TOO_BIG, MASK_FIRST);
			append_and(SECOND, TOO_BIG, MASK_SECOND);

			append_add(FIRST, FIRST, MASK_FIRST);
			append_add(SECOND, SECOND, MASK_SECOND);

			append_and(FIRST, FIRST, MASK_FIRST);
			append_and(SECOND, SECOND, MASK_SECOND);

			append_or(REMOVE_MASK, FIRST, SECOND);
			append_not(REMOVE_MASK, REMOVE_MASK);

			append_print(REMOVE_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_right(TOO_BIG, TOO_BIG, n * k);

			vector<bool> all(2000, true);
			append_store(ALL, all);
			append_add(TOO_BIG, TOO_BIG, ALL);

			append_and(REMOVE_MASK, REMOVE_MASK, TOO_BIG_MASK);

			append_print(REMOVE_MASK);
		
			append_or(INPUT, INPUT, REMOVE_MASK);
		}

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

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

	if (s == 1) {

	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Incorrect min value
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Wrong answer detected in grader
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB Incorrect min value
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Wrong answer detected in grader
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Incorrect sorting
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Incorrect sorting
2 Halted 0 ms 0 KB -