답안 #1062154

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1062154 2024-08-16T19:54:25 Z jamjanek 레지스터 (IOI21_registers) C++17
21 / 100
1 ms 348 KB
#include "registers.h"
#include<bits/stdc++.h>
using namespace std;

int iterator1;
void policz_mniejsze(int k, int skip, int n){
	vector<bool>zero(2000, 0);
	int i;
	for(i=0;i<2000;i+=k*skip*2)
		zero[i] = 1;
	append_store(10, zero);
	for(int j=0;j<n;j+=skip*2)
		for(int i=0;i<k;i++)
			zero[j*k+i] = 1;
	append_store(11, zero);
	//0 - a
	//1 - b
	//2 - !a
	append_right(1, 0, k*skip);
	append_and(0,11,0);
	append_and(1,11,1);

	append_not(2, 0);
	append_and(2, 2, 11);

	append_add(2, 1, 2);

	append_right(2, 2, k);
	append_and(2, 2, 10);//0 lub 1	


	append_add(2, 2, 11); //11111 lub 0000
	append_and(3, 1, 2);
	append_and(4, 0, 2);
	append_xor(4, 0, 4);
	append_or(0, 3, 4);
}

void construct_instructions(int s, int n, int k, int q) {
	vector<bool>zero(2000, 0);
	for(int i=k*n;i<2000;i++)
		zero[i] = 1;
	append_store(1, zero);
	append_or(0, 0, 1);
	
	
	int skip = 1;
	while(skip<n){
		policz_mniejsze(k, skip, n);
		append_print(0);
		skip*=2;
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Incorrect min value
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Incorrect min value
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Incorrect sorting
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Incorrect sorting
2 Halted 0 ms 0 KB -