結果

問題 No.2231 Surprising Flash!
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-10-06 12:35:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,749 bytes
コンパイル時間 5,447 ms
コンパイル使用メモリ 270,796 KB
実行使用メモリ 36,564 KB
最終ジャッジ日時 2024-07-26 15:22:36
合計ジャッジ時間 13,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 56 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 5 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 217 ms
32,308 KB
testcase_12 AC 226 ms
36,448 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 222 ms
32,500 KB
testcase_16 AC 223 ms
6,944 KB
testcase_17 AC 238 ms
6,944 KB
testcase_18 AC 215 ms
30,084 KB
testcase_19 AC 215 ms
30,332 KB
testcase_20 AC 212 ms
30,112 KB
testcase_21 AC 210 ms
30,120 KB
testcase_22 AC 214 ms
30,204 KB
testcase_23 AC 222 ms
30,096 KB
testcase_24 AC 221 ms
30,084 KB
testcase_25 AC 210 ms
30,204 KB
testcase_26 AC 212 ms
30,116 KB
testcase_27 AC 217 ms
30,088 KB
testcase_28 AC 213 ms
30,156 KB
testcase_29 AC 215 ms
32,436 KB
testcase_30 AC 215 ms
32,396 KB
testcase_31 AC 218 ms
32,440 KB
testcase_32 AC 217 ms
32,444 KB
testcase_33 AC 228 ms
32,404 KB
testcase_34 AC 219 ms
32,416 KB
testcase_35 AC 224 ms
32,368 KB
testcase_36 AC 219 ms
32,284 KB
testcase_37 AC 230 ms
32,536 KB
testcase_38 AC 220 ms
32,296 KB
testcase_39 AC 101 ms
6,940 KB
testcase_40 AC 68 ms
6,944 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

struct Fast {
  Fast() {
    std::cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << setprecision(10);
  }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--)
#define writejoin(s, a) rep(_i, 0, (a).size()) cout << (a)[_i] << (_i + 1 < (int)(a).size() ? s : "\n");
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

using ll = long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using mint = modint998244353;
using vm = vector<mint>;

int main() {
  int t;
  cin >> t;
  while (t--) {
    int n, m;
    cin >> n >> m;
    string s1, s2;
    cin >> s1 >> s2;

    vm a1(n), a2(n), a3(n);
    rep(i, 0, n) {
      int c = s1[i] == '?' ? 0 : s1[i] - 'a' + 1;
      a1[i] = c;
      a2[i] = c * c;
      a3[i] = c * c * c;
    }
    vm b0(m, 1), b1(m), b2(m);
    rep(i, 0, m) {
      int c = s2[m - 1 - i] - 'a' + 1;
      b0[i] = 1;
      b1[i] = c;
      b2[i] = c * c;
    }

    auto c1 = convolution(a1, b2);
    auto c2 = convolution(a2, b1);
    auto c3 = convolution(a3, b0);
    vm c0(n + m - 1);
    rep(i, 0, n + m - 1) c0[i] = c1[i] - 2 * c2[i] + c3[i];
    int ans = -1;
    rep(k, 0, n - m + 1) {
      if (c0[m - 1 + k] == 0) ans = k;
    }
    if (ans == -1) {
      cout << -1 << "\n";
    } else {
      rep(i, 0, m) s1[i + ans] = s2[i];
      rep(i, 0, n) cout << (s1[i] == '?' ? 'a' : s1[i]);
      cout << "\n";
    }
  }
}
0