結果

問題 No.2037 NAND Pyramid
ユーザー olpheolphe
提出日時 2022-08-12 22:10:38
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 1,250 ms
コンパイル使用メモリ 128,784 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 02:43:15
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "unordered_map"
#include "unordered_set"
#include "iomanip"
#include "cmath"
#include "random"
#include "bitset"
#include "cstdio"
#include "numeric"
#include "cassert"
#include "ctime"

using namespace std;

//constexpr long long int MOD = 1000000007;
constexpr long long int MOD = 998244353;
constexpr double EPS = 1e-8;

//int N, M, K, T, H, W, L, R;
long long int N, M, K, T, H, W, L, R;


int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	cin >> N >> K;
	string s;
	cin >> s;
	K = N - K;
	if (K > 1) {
		string t;
		for (int i = 0; i < N; i++) {
			bool ok = false;
			if (i && s[i - 1] == '1')ok = true;
			if (i + 1 < N && s[i + 1] == '1')ok = true;
			if (!ok)s[i] = '0';
		}
		for (int i = K / 2; i + K / 2 < N; i++) {
			t.push_back(s[i]);
		}
		s = t;
		K %= 2;
	}
	N = s.size();
	if (K) {
		string t;
		for (int i = 1; i < N; i++) {
			if (s[i] == '1' && s[i - 1] == '1')t.push_back('0');
			else t.push_back('1');
		}
		s = t;
	}
	cout << s << endl;
}
0