#include "registers.h"
void construct_instructions(int s, int n, int k, int q) {
append_print(0);
std::vector<bool> mask1(2000);
for (int i = 0; i < n*k; i += 2*k) {
for (int j = 0; j < k; j++) {
mask1[i+j] = true;
}
for (int j = 0; j < k; j++) {
mask1[i + k + j] = false;
}
}
std::vector<bool> one(2000);
for (int i = 0; i < n * k; i += 2 * k) {
one[i] = true;
for (int j = 1; j < 2 * k; j++) {
one[i + j] = false;
}
}
append_store(2, mask1);
append_not(3, 2);
append_store(4, one);
int msb = 0x1;
int logn = 0;
while (msb < n) {
msb <<= 1;
++logn;
}
for (int i = 0; i < logn; i++) {
//append_move(1, 0);
append_right(1, 0, k*(1 << i));
append_print(1);
append_and(0, 0, 2); // reg0 holds a (even)
append_and(1, 1, 2); // reg1 holds b (odd)
append_print(0);
append_print(1);
append_xor(5, 1, 2);
append_add(5, 5, 4); // reg5 holds -b
append_print(5);
append_add(6, 5, 0); // reg6 holds a - b
append_print(6);
append_move(7, 0);
// if a > b, overflow bit is 1
// if a < b, overflow bit is 0
append_and(6, 6, 3); // reg6 holds the overflow of a-b
append_add(6, 6, 3); // reg6 holds ffff if a is the min, 0 otherwise
append_right(8, 6, k); // reg8 aligns the mask against the val
append_not(9, 8);
append_print(8);
append_print(9);
// move min to 0
append_and(10, 7, 8);
append_and(11, 1, 9);
append_or(0, 10, 11);
// move max to 1 - no need for min only
//append_and(10, 7, 9);
//append_and(11, 1, 8);
//append_or(1, 10, 11);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Incorrect min value |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Incorrect min value |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Incorrect sorting |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Incorrect sorting |
2 |
Halted |
0 ms |
0 KB |
- |