結果

問題 No.1589 Bit Vector
ユーザー 👑 NachiaNachia
提出日時 2021-07-09 00:56:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,643 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 85,000 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-14 06:14:01
合計ジャッジ時間 3,045 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 1 ms
4,376 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N,K;
int anscnt = 0;
string ans;
vector<int> bitvec;

void push_upd(int i,int x){
  anscnt++;
  ans += "UPD " + to_string(i) + " " + to_string(x) + "\n";
  //bitvec[i] = x;
  //rep(i,N+1) cout << bitvec[i]; cout << endl;
}
void push_and(int i,int x,int y){
  anscnt++;
  ans += "AND " + to_string(i) + " " + to_string(x) + " " + to_string(y) + "\n";
  //bitvec[i] = bitvec[x] & bitvec[y];
  //rep(i,N+1) cout << bitvec[i]; cout << endl;
}
void push_xor(int i,int x,int y){
  anscnt++;
  ans += "XOR " + to_string(i) + " " + to_string(x) + " " + to_string(y) + "\n";
  //bitvec[i] = bitvec[x] ^ bitvec[y];
  //rep(i,N+1) cout << bitvec[i]; cout << endl;
}

void add1(int l1,int r1,int b){
  for(int i=l1; i<r1; i++){
    push_and(N,i,b);
    push_xor(i,i,b);
    push_and(b,N,N);
  }
  push_and(r1,b,b);
}

void comp(int l1,int r1,int k,int p){
  if(k & 1) push_and(p,l1,l1);
  else push_upd(p,1);
  for(int i=l1+1; i<r1; i++){
    k >>= 1;
    if(k & 1) push_and(p,i,p);
    else{
      push_upd(i-1,1);
      push_xor(p,i-1,p);
      push_xor(i,i-1,i);
      push_and(p,i,p);
      push_xor(p,i-1,p);
    }
  }
}

int main(){
  cin >> N >> K;
  //bitvec.resize(N+1,0);
  //rep(i,N){ char c; cin >> c; bitvec[i] = c-'0'; }
  for(int i=1; i<N; i++) add1(0,min(i,6),i);
  comp(0,min(N,6),K,N);
  cout << anscnt << "\n" << ans;
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_inst;
0