結果
問題 | No.2964 Obstruction Bingo |
ユーザー | KumaTachiRen |
提出日時 | 2024-11-16 16:16:56 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,344 ms / 2,468 ms |
コード長 | 3,975 bytes |
コンパイル時間 | 5,494 ms |
コンパイル使用メモリ | 317,984 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 16:18:52 |
合計ジャッジ時間 | 40,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 10 ms
5,248 KB |
testcase_06 | AC | 565 ms
5,248 KB |
testcase_07 | AC | 60 ms
5,248 KB |
testcase_08 | AC | 406 ms
5,248 KB |
testcase_09 | AC | 39 ms
5,248 KB |
testcase_10 | AC | 275 ms
5,248 KB |
testcase_11 | AC | 438 ms
5,248 KB |
testcase_12 | AC | 917 ms
5,248 KB |
testcase_13 | AC | 120 ms
5,248 KB |
testcase_14 | AC | 111 ms
5,248 KB |
testcase_15 | AC | 20 ms
5,248 KB |
testcase_16 | AC | 250 ms
5,248 KB |
testcase_17 | AC | 171 ms
5,248 KB |
testcase_18 | AC | 167 ms
5,248 KB |
testcase_19 | AC | 362 ms
5,248 KB |
testcase_20 | AC | 484 ms
5,248 KB |
testcase_21 | AC | 945 ms
5,248 KB |
testcase_22 | AC | 274 ms
5,248 KB |
testcase_23 | AC | 116 ms
5,248 KB |
testcase_24 | AC | 6 ms
5,248 KB |
testcase_25 | AC | 1,295 ms
5,248 KB |
testcase_26 | AC | 1,322 ms
5,248 KB |
testcase_27 | AC | 1,302 ms
5,248 KB |
testcase_28 | AC | 1,283 ms
5,248 KB |
testcase_29 | AC | 1,304 ms
5,248 KB |
testcase_30 | AC | 1,329 ms
5,248 KB |
testcase_31 | AC | 1,274 ms
5,248 KB |
testcase_32 | AC | 1,316 ms
5,248 KB |
testcase_33 | AC | 1,297 ms
5,248 KB |
testcase_34 | AC | 1,288 ms
5,248 KB |
testcase_35 | AC | 1,286 ms
5,248 KB |
testcase_36 | AC | 1,311 ms
5,248 KB |
testcase_37 | AC | 1,281 ms
5,248 KB |
testcase_38 | AC | 1,344 ms
5,248 KB |
testcase_39 | AC | 1,292 ms
5,248 KB |
testcase_40 | AC | 1,292 ms
5,248 KB |
testcase_41 | AC | 1,325 ms
5,248 KB |
testcase_42 | AC | 1,276 ms
5,248 KB |
testcase_43 | AC | 1,316 ms
5,248 KB |
testcase_44 | AC | 1,299 ms
5,248 KB |
testcase_45 | AC | 70 ms
5,248 KB |
testcase_46 | AC | 2 ms
5,248 KB |
testcase_47 | AC | 3 ms
5,248 KB |
testcase_48 | AC | 63 ms
5,248 KB |
testcase_49 | AC | 108 ms
5,248 KB |
testcase_50 | AC | 387 ms
5,248 KB |
testcase_51 | AC | 1,227 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using vm = vector<mint>; using vvm = vector<vm>; inline ostream &operator<<(ostream &os, const mint x) { return os << x.val(); }; inline istream &operator>>(istream &is, mint &x) { long long v; is >> v; x = v; return is; }; 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 YN(b) cout << ((b) ? "YES" : "NO") << "\n"; #define Yn(b) cout << ((b) ? "Yes" : "No") << "\n"; #define yn(b) cout << ((b) ? "yes" : "no") << "\n"; template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } using ll = long long; using vb = vector<bool>; using vvb = vector<vb>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; template <typename T1, typename T2> ostream &operator<<(ostream &os, pair<T1, T2> &p) { os << "(" << p.first << "," << p.second << ")"; return os; } template <typename T> ostream &operator<<(ostream &os, vector<T> &vec) { for (int i = 0; i < (int)vec.size(); i++) { os << vec[i] << (i + 1 == (int)vec.size() ? "" : " "); } return os; } template <typename T> istream &operator>>(istream &is, vector<T> &vec) { for (int i = 0; i < (int)vec.size(); i++) is >> vec[i]; return is; } ll floor(ll a, ll b) { return a >= 0 ? a / b : (a + 1) / b - 1; } ll ceil(ll a, ll b) { return a > 0 ? (a - 1) / b + 1 : a / b; } void solve() { int l, k; cin >> l >> k; string s, t; cin >> s >> t; vi a(26); cin >> a; int sum = 0; for (auto v : a) sum += v; mint q = mint(sum).inv(); vvm dp_leq(l, vm(l, 0)), dp_gt(l, vm(l, 0)); dp_leq[0][0] = 1; mint ans_l = 0, ans_r = 0; rep(loop, 0, k) { vvm ndp_leq(l, vm(l, 0)), ndp_gt(l, vm(l, 0)); rep(u, 0, 26) { mint p = a[u] * q; rep(i, 0, l) rep(j, 0, l) { { int x = i, y = j; if (x > y) y += l; if (s[i] - 'a' == u) x++; if (t[j] - 'a' == u) y++; mint w = dp_leq[i][j] * p; if (x - y >= l) ans_l += w; else if (y - x >= l) ans_r += w; else { if (x <= y) ndp_leq[x % l][y % l] += w; else ndp_gt[x % l][y % l] += w; } } { int x = i, y = j; if (x <= y) x += l; if (s[i] - 'a' == u) x++; if (t[j] - 'a' == u) y++; mint w = dp_gt[i][j] * p; if (x - y >= l) ans_l += w; else if (y - x >= l) ans_r += w; else { if (x <= y) ndp_leq[x % l][y % l] += w; else ndp_gt[x % l][y % l] += w; } } } } dp_leq = ndp_leq; dp_gt = ndp_gt; } cout << ans_l << " " << ans_r << "\n"; } int main() { int t = 1; // cin >> t; while (t--) solve(); }