結果

問題 No.2231 Surprising Flash!
ユーザー suisensuisen
提出日時 2023-05-11 18:59:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,706 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 118,844 KB
実行使用メモリ 40,148 KB
最終ジャッジ日時 2024-05-05 16:36:09
合計ジャッジ時間 12,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 59 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 5 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 227 ms
35,344 KB
testcase_12 AC 233 ms
40,148 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 226 ms
35,224 KB
testcase_16 AC 220 ms
5,376 KB
testcase_17 AC 240 ms
6,928 KB
testcase_18 AC 223 ms
32,764 KB
testcase_19 AC 224 ms
32,632 KB
testcase_20 AC 223 ms
32,764 KB
testcase_21 AC 224 ms
32,764 KB
testcase_22 AC 220 ms
32,636 KB
testcase_23 AC 221 ms
32,508 KB
testcase_24 AC 218 ms
32,636 KB
testcase_25 AC 229 ms
32,636 KB
testcase_26 AC 216 ms
32,636 KB
testcase_27 AC 222 ms
32,640 KB
testcase_28 AC 226 ms
32,636 KB
testcase_29 AC 228 ms
35,220 KB
testcase_30 AC 226 ms
35,220 KB
testcase_31 AC 227 ms
35,348 KB
testcase_32 AC 224 ms
35,216 KB
testcase_33 AC 221 ms
35,216 KB
testcase_34 AC 219 ms
35,220 KB
testcase_35 AC 223 ms
35,220 KB
testcase_36 AC 225 ms
35,216 KB
testcase_37 AC 225 ms
35,092 KB
testcase_38 AC 229 ms
35,220 KB
testcase_39 AC 104 ms
6,816 KB
testcase_40 AC 71 ms
6,800 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#include <atcoder/modint>
#include <atcoder/convolution>

using mint = atcoder::modint998244353;

namespace atcoder {
    std::istream& operator>>(std::istream& in, mint& a) {
        long long e; in >> e; a = e;
        return in;
    }

    std::ostream& operator<<(std::ostream& out, const mint& a) {
        out << a.val();
        return out;
    }
} // namespace atcoder

void solve() {
    int n, m;
    std::cin >> n >> m;

    std::string s, t;
    std::cin >> s >> t;

    std::reverse(s.begin(), s.end());

    std::vector<mint> f0(n), f1(n), f2(n);
    std::vector<mint> g0(m), g1(m), g2(m);
    for (int i = 0; i < n; ++i) {
        f0[i] = (s[i] == '?') ? 0 : 1;
        f1[i] = f0[i] * s[i];
        f2[i] = f1[i] * s[i];
    }
    for (int j = 0; j < m; ++j) {
        g0[j] = 1;
        g1[j] = g0[j] * t[j];
        g2[j] = g1[j] * t[j];
    }
    std::vector<mint> h(n + m - 1);
    std::vector<mint> f2g0 = atcoder::convolution(f2, g0);
    std::vector<mint> f1g1 = atcoder::convolution(f1, g1);
    std::vector<mint> f0g2 = atcoder::convolution(f0, g2);
    for (int i = 0; i < n + m - 1; ++i) {
        h[i] += f2g0[i] - 2 * f1g1[i] + f0g2[i];
    }
    for (int i = m - 1; i < n; ++i) {
        if (h[i] == 0) {
            for (int j = 0; j < m; ++j) {
                s[i - j] = t[j];
            }
            std::replace(s.begin(), s.end(), '?', 'a');
            std::reverse(s.begin(), s.end());
            std::cout << s << '\n';
            return;
        }
    }
    std::cout << -1 << '\n';
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int t;
    std::cin >> t;
    while (t-- > 0) {
        solve();
    }
}
0