結果

問題 No.1589 Bit Vector
ユーザー milanis48663220milanis48663220
提出日時 2021-07-14 00:50:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,925 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 129,120 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-15 19:53:42
合計ジャッジ時間 10,216 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;
using T = tuple<string, int, int, int>;
const string AND = "AND";
const string XOR = "XOR";
const string UPD = "UPD";

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, k; cin >> n >> k;
    vector<T> ans;
    auto add_swap = [&](int i, int j){
        ans.push_back(T(AND, n, i, j));
        ans.push_back(T(XOR, i, i, j));
        ans.push_back(T(XOR, i, i, n));
        ans.push_back(T(AND, j, j, n));
    };
    for(int i = n-1; i >= 1; i--){
        for(int j = i; j >= 1; j--){
            add_swap(j-1, j);
        }
    }
    ans.push_back(T(UPD, n, 0, 0));
    ans.push_back(T(XOR, n, n, k-1));
    int t; cin >> t;
    while(t--){
        vector<int> c(n+1);
        for(int i = 0; i < n; i++) cin >> c[i];
        int sum = accumulate(c.begin(), c.end(), 0);
        for(auto [t, x, y, z]: ans){
            if(t == XOR) c[x] = c[y]^c[z];
            if(t == AND) c[x] = c[y]&c[z];
            if(t == UPD) c[x] = y;
        }
        if(sum >= k) assert(c[n] == 1);
        else assert(c[n] == 0);
    }
    cout << ans.size() << endl;
    for(auto [t, a, b, c]: ans){
        if(t == UPD) cout << t << ' ' << a << ' ' << b << endl;
        else cout << t << ' ' << a << ' ' << b << ' ' << c << endl; 
    }
}
0