結果

問題 No.2037 NAND Pyramid
ユーザー simansiman
提出日時 2022-11-28 20:14:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 141,860 KB
実行使用メモリ 9,024 KB
最終ジャッジ日時 2024-10-05 20:22:19
合計ジャッジ時間 3,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 9 ms
6,844 KB
testcase_08 AC 10 ms
7,488 KB
testcase_09 AC 9 ms
6,528 KB
testcase_10 AC 6 ms
6,016 KB
testcase_11 AC 10 ms
6,848 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 7 ms
6,016 KB
testcase_15 AC 10 ms
7,104 KB
testcase_16 AC 8 ms
6,056 KB
testcase_17 AC 12 ms
8,384 KB
testcase_18 AC 11 ms
8,256 KB
testcase_19 AC 12 ms
8,684 KB
testcase_20 AC 13 ms
8,580 KB
testcase_21 AC 14 ms
8,896 KB
testcase_22 AC 14 ms
8,896 KB
testcase_23 AC 14 ms
9,024 KB
testcase_24 AC 13 ms
9,008 KB
testcase_25 AC 12 ms
8,232 KB
testcase_26 AC 12 ms
8,392 KB
testcase_27 AC 12 ms
8,644 KB
testcase_28 AC 12 ms
8,348 KB
testcase_29 AC 12 ms
8,388 KB
testcase_30 AC 14 ms
9,024 KB
testcase_31 AC 13 ms
8,664 KB
testcase_32 AC 12 ms
8,732 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N, K;
  cin >> N >> K;
  string S;
  cin >> S;

  int colors[N][3];
  memset(colors, -1, sizeof(colors));

  for (int i = 0; i < N; ++i) {
    colors[i][0] = S[i] - '0';
  }
  
  for (int i = 1; i <= 2; ++i) {
    for (int j = 0; j < N - i; ++j) {
      colors[j][i] = !(colors[j][i - 1] & colors[j + 1][i - 1]);
    }
  }

  int offset = 0;
  int k = N - K;
  while (k >= 3) {
    k -= 2;
    offset += 1;
  }

  string ans = "";
  // fprintf(stderr, "k: %d\n", k);

  for (int i = 0; i < K; ++i) {
    if (colors[i + offset][k] == 0) {
      ans += '0';
    } else {
      ans += '1';
    }
  }

  cout << ans << endl;

  return 0;
}
0