# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
599598 | definitelynotmee | 레지스터 (IOI21_registers) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "registers.h"
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define all(x) x.begin(), x.end()
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
template<typename T>
using matrix= vector<vector<T>>;
const int T = 10000;
void getbit(int bit, int to){
append_move(to,0);
append_left(to,bit);
}
void construct_instructions(int s, int n, int k, int q) {
getbit(0,1);
getbit(1,2);
getbit(2,3);
getbit(3,4);
append_and(5,2,4);
append_or(6,1,3);
append_xor(7,2,5);
append_or(7,1,7);
append_xor(8,4,5);
append_or(8,3,8);
append_and(6,6,7);
append_and(6,6,8);
append_right(5,1);
append_move(0,5);
append_or(0,0,6);
}
// 0: resposta
// 1: a1
// 2: a0
// 3: b1
// 4: b0
// 5: a0 and b0 = r0
// 6: a1 or b1 -> r1
// 7: (a0 xor r0) or a1
// 8: (b0 xor r0) or b1