結果
| 問題 | 
                            No.1589 Bit Vector
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Nachia
                         | 
                    
| 提出日時 | 2021-07-08 23:02:30 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 3 ms / 2,000 ms | 
| コード長 | 1,645 bytes | 
| コンパイル時間 | 1,378 ms | 
| コンパイル使用メモリ | 83,172 KB | 
| 最終ジャッジ日時 | 2025-01-22 19:08:42 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 35 | 
ソースコード
#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,10),i);
  comp(0,min(N,10),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;
            
            
            
        
            
Nachia