結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, K;
  cin >> N >> K;
  string S;
  cin >> S;
  K = N - K;
  if (K > 0){
    for (int i = 0; i < N - 2; i++){
      if (S.substr(i, 3) == "010"){
        S[i + 1] = '0';
      }
    }
    S = S.substr(K / 2, N - K / 2 * 2);
  }
  if (K % 2 == 1){
    int M = S.size();
    string T;
    for (int i = 0; i < M - 1; i++){
      if (S.substr(i, 2) == "11"){
        T += '0';
      } else {
        T += '1';
      }
    }
    S = T;
  }
  cout << S << endl;
}
0