結果

問題 No.2037 NAND Pyramid
ユーザー MitarushiMitarushi
提出日時 2022-08-13 00:32:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,545 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 80,524 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 05:02:24
合計ジャッジ時間 21,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 449 ms
6,940 KB
testcase_08 AC 1,040 ms
6,940 KB
testcase_09 AC 304 ms
6,944 KB
testcase_10 AC 442 ms
6,944 KB
testcase_11 AC 157 ms
6,944 KB
testcase_12 AC 31 ms
6,944 KB
testcase_13 AC 117 ms
6,944 KB
testcase_14 AC 328 ms
6,940 KB
testcase_15 AC 714 ms
6,940 KB
testcase_16 AC 371 ms
6,944 KB
testcase_17 AC 1,545 ms
6,940 KB
testcase_18 AC 1,542 ms
6,940 KB
testcase_19 AC 1,162 ms
6,940 KB
testcase_20 AC 1,162 ms
6,944 KB
testcase_21 AC 16 ms
6,944 KB
testcase_22 AC 16 ms
6,944 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 16 ms
6,940 KB
testcase_25 AC 1,538 ms
6,944 KB
testcase_26 AC 1,535 ms
6,944 KB
testcase_27 AC 1,155 ms
6,944 KB
testcase_28 AC 1,538 ms
6,940 KB
testcase_29 AC 1,534 ms
6,940 KB
testcase_30 AC 16 ms
6,944 KB
testcase_31 AC 1,158 ms
6,940 KB
testcase_32 AC 1,156 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstdint>



int main() {
    int n, k;
    std::cin >> n >> k;
    std::string s;
    std::cin >> s;
    
    std::uint64_t dp[400200 / 64] = {};

    for (int i = 0; i < n; i++) {
        if (s[i] == '1') {
            dp[i / 64] |= 1ull << (i % 64);
        }
    }

    for (int i = n; i > k; i--) {
        for (int j = 0; j < i / 64 + 1; j++) {
            std::uint64_t c = dp[j] & (dp[j + 1] << 63);
            c |= dp[j] & (dp[j] >> 1);
            dp[j] = ~c;
        }
    }

    std::string t = "";
    for (int i = 0; i < k; i++) {
        if (dp[i / 64] & (1ull << (i % 64))) {
            t += '1';
        } else {
            t += '0';
        }
    }

    std::cout << t << std::endl;
}
0