結果

問題 No.1820 NandShift
ユーザー nok0nok0
提出日時 2021-08-29 11:41:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 198,732 KB
最終ジャッジ日時 2025-01-24 04:03:00
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
	int n, m;
	cin >> n >> m;
	string x;
	cin >> x;
	vector<vector<int>> res;

	// B_i |= B_j
	auto OR = [&](int i, int j) {
		res.push_back({2, i, i, i});
		res.push_back({2, j, j, j});
		res.push_back({2, i, i, j});
	};

	const int pl = 100000;
	res.push_back({2, pl - 2, pl - 2, pl - 2});
	res.push_back({1, pl - 1, pl - 2});
	res.push_back({2, pl, pl - 1, pl - 2});

	for(int i = 1; i < m; i++)
		res.push_back({1, pl + i, pl + i - 1});

	for(int i = 0; i < m; i++) {
		if(x[m - 1 - i] == '1') OR(0, pl + i);
	}

	cout << res.size() << endl;
	for(const auto &vec : res) {
		for(int i = 0; i < (int)vec.size(); i++)
			cout << vec[i] << " \n"[i == (int)vec.size() - 1];
	}
}
0