답안 #1075663

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1075663 2024-08-26T08:26:49 Z mickey080929 레지스터 (IOI21_registers) C++17
46 / 100
4 ms 948 KB
#include "registers.h"
#include <bits/stdc++.h>

using namespace std;

void append_move(int t, int y);
void append_store(int t, vector<bool> b);
void append_and(int t, int x, int y);
void append_or(int t, int x, int y);
void append_xor(int t, int x, int y);
void append_not(int t, int x);
void append_left(int t, int x, int p);
void append_right(int t, int x, int p);
void append_add(int t, int x, int y);
void append_print(int t);

static const int m = 100;
static const int b = 2000;

void cmp_and_swap(vector<int> u, vector<int> v, int k) {
	append_right(1, 0, u[0]*k);
	append_right(2, 0, v[0]*k);
	vector<bool> arr(b, 0);
	for (auto &x : u) {
		for (int i=(x-u[0])*k; i<(x-u[0]+1)*k; i++) {
			arr[i] = 1;
		}
	}
	append_store(3, arr);
	append_and(1, 1, 3);
	append_and(2, 2, 3);
	append_xor(4, 2, 3);
	append_add(5, 1, 4);
	append_right(5, 5, k);
	append_and(5, 3, 5);
	append_xor(5, 3, 5);
	fill(arr.begin(), arr.end(), 0);
	for (auto &x : u) {
		arr[(x-u[0]) * k] = 1;
	}
	append_store(6, arr);
	append_add(5, 5, 6);
	append_and(5, 3, 5);
	append_xor(6, 1, 2);
	append_and(6, 6, 5);
	append_left(7, 6, u[0] * k);
	append_xor(0, 0, 7);
	append_left(7, 6, v[0] * k);
	append_xor(0, 0, 7);
}

void construct_instructions(int s, int n, int k, int q) {
	if (s == 0) {
		for (int i=n-2; i>=0; i--) {
			cmp_and_swap({i}, {i+1}, k);
		}
	}
	else {
		for (int i=0; i<=n-1; i++) {
			for (int j=n-2; j>=i; j--) {
				cmp_and_swap({j}, {j+1}, k);
			}
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 2 ms 860 KB Output is correct
3 Correct 4 ms 860 KB Output is correct
4 Correct 4 ms 948 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Wrong answer detected in grader
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 600 KB Output is correct
2 Correct 1 ms 604 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 600 KB Output is correct
2 Correct 1 ms 604 KB Output is correct
3 Incorrect 1 ms 820 KB Wrong answer detected in grader
4 Halted 0 ms 0 KB -