結果

問題 No.2037 NAND Pyramid
ユーザー kuronikuroni
提出日時 2022-08-12 22:54:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 167,112 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 03:33:23
合計ジャッジ時間 3,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, k; cin >> n >> k;
    string s; cin >> s;
    int eve = n - (n - k) / 2 * 2;
    string ans;
    if (eve == n) {
        ans = s;
    } else {
        for (int i = 0; i < eve; i++) {
            int ind = i + (n - eve) / 2;
            if (s[ind] == '1' && (s[ind - 1] == '1' || s[ind + 1] == '1')) {
                ans.push_back('1');
            } else {
                ans.push_back('0');
            }
        }
    }
    if (k != eve) {
        for (int i = 0; i < k; i++) {
            ans[i] = (ans[i] & ans[i + 1]) ^ 1;
        }
        ans.pop_back();
    }
    cout << ans;
}
0