結果

問題 No.2129 Perfect Binary Tree...?
ユーザー kuronikuroni
提出日時 2022-11-19 05:54:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 3,000 ms
コード長 1,267 bytes
コンパイル時間 4,049 ms
コンパイル使用メモリ 240,812 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-09-20 08:34:57
合計ジャッジ時間 7,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 34 ms
6,944 KB
testcase_04 AC 35 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 50 ms
6,940 KB
testcase_07 AC 43 ms
6,944 KB
testcase_08 AC 91 ms
10,568 KB
testcase_09 AC 95 ms
11,336 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 92 ms
10,392 KB
testcase_13 AC 154 ms
19,588 KB
testcase_14 AC 94 ms
11,656 KB
testcase_15 AC 86 ms
10,252 KB
testcase_16 AC 138 ms
16,984 KB
testcase_17 AC 30 ms
6,940 KB
testcase_18 AC 34 ms
6,940 KB
testcase_19 AC 34 ms
6,940 KB
testcase_20 AC 35 ms
6,944 KB
testcase_21 AC 35 ms
6,940 KB
testcase_22 AC 35 ms
6,944 KB
testcase_23 AC 142 ms
16,876 KB
testcase_24 AC 144 ms
17,204 KB
testcase_25 AC 64 ms
7,476 KB
testcase_26 AC 34 ms
6,944 KB
testcase_27 AC 41 ms
7,108 KB
testcase_28 AC 94 ms
11,080 KB
testcase_29 AC 102 ms
12,168 KB
testcase_30 AC 153 ms
19,840 KB
testcase_31 AC 96 ms
11,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    mint ans = 0, tot = mint(2).pow(n) - 1;
    for (int i = 1; i <= n; i++) {
        mint sub = mint(2).pow(i) - 1;
        ans += mint(2).pow(n - i) * sub * (tot - sub);
    }
    string s, t; cin >> s >> t;
    int ls = s.size(), lt = t.size(), ll = 0;
    for (; ll < min(ls, lt); ll++) {
        if (s[ll] != t[ll]) {
            break;
        }
    }
    vector<mint> xs, xt;
    mint ss = 0, st = 0;
    for (int i = ls; i > ll; i--) {
        xs.push_back(mint(2).pow(n - i + 1) - 1 - ss);
        ss += xs.back();
    }
    for (int i = lt; i > ll; i--) {
        xt.push_back(mint(2).pow(n - i + 1) - 1 - st);
        st += xt.back();
    }
    vector<mint> all = xs;
    all.push_back(tot - ss - st);
    all.insert(all.end(), xt.rbegin(), xt.rend());
    vector<mint> rev = all; reverse(rev.begin(), rev.end());
    int sz = all.size();
    vector<mint> res = convolution(all, rev);
    for (int i = 0; i < res.size(); i++) {
        int dif = i - sz + 1;
        ans -= max(0, 2 * dif - sz) * res[i];
    }
    cout << ans.val();
}
0