結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー trineutrontrineutron
提出日時 2020-05-28 01:56:18
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 721 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 121,984 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-30 18:09:01
合計ジャッジ時間 39,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,960 KB
testcase_04 AC 1 ms
10,496 KB
testcase_05 AC 2 ms
8,832 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 1 ms
8,704 KB
testcase_08 AC 1 ms
10,496 KB
testcase_09 AC 1 ms
8,576 KB
testcase_10 AC 1 ms
10,496 KB
testcase_11 AC 2 ms
8,704 KB
testcase_12 AC 2 ms
10,496 KB
testcase_13 AC 7 ms
8,832 KB
testcase_14 AC 7 ms
8,960 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 8 ms
8,832 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 257 ms
10,496 KB
testcase_21 AC 619 ms
5,248 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 100 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 21 ms
5,248 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 6 ms
5,248 KB
testcase_34 AC 7 ms
5,248 KB
testcase_35 AC 7 ms
5,248 KB
testcase_36 AC 6 ms
5,248 KB
testcase_37 AC 7 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cassert>

int main() {
    int n, k;
    std::string s;
    std::cin >> n >> k >> s;
    assert(1 <= k && k < n && n <= 200000);
    assert((int) s.size() == n - 1);
    for (char c : s) {
        assert(c == 'o' || c == 'x');
    }
    std::vector<bool> dp(n + k + 1); // declarer
    for (int i = n - 1; i >= 0; i--) {
        if (i > 0 && s.at(i - 1) == 'x') continue;
        dp.at(i) = true;
        for (int j = 1; j <= k; j++) {
            if (dp.at(i + j)) {
                dp.at(i) = false;
                break;
            }
        }
    }
    for (int i = 0; i <= k; i++) {
        if (dp.at(i)) {
            std::cout << i << std::endl;
        }
    }
}
0