結果
| 問題 | No.1589 Bit Vector |
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2021-07-09 01:02:54 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 1,591 bytes |
| 記録 | |
| コンパイル時間 | 1,171 ms |
| コンパイル使用メモリ | 83,572 KB |
| 最終ジャッジ日時 | 2025-01-22 19:56:40 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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";
}
void push_and(int i,int x,int y){
anscnt++;
ans += "AND " + to_string(i) + " " + to_string(x) + " " + to_string(y) + "\n";
}
void push_xor(int i,int x,int y){
anscnt++;
ans += "XOR " + to_string(i) + " " + to_string(x) + " " + to_string(y) + "\n";
}
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);
}
}
}
void solve(int n,int k){
anscnt = 0;
ans = "";
for(int i=1; i<n; i++) add1(0,min(i,6),i);
comp(0,min(n,6),k,n);
}
int main(){
/*
int ans = 0;
for(int n=2; n<=50; n++) for(int k=0; k<=n; k++){
solve(n,k);
ans = max(ans,anscnt);
cout << anscnt << endl;
}
cout<< ans<<endl;
*/
cin >> N >> K;
solve(N,K);
if(anscnt > 912) exit(1);
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