結果
問題 | No.2772 Appearing Even Times |
ユーザー | eve__fuyuki |
提出日時 | 2024-05-31 23:40:16 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2,006 ms / 4,000 ms |
コード長 | 1,337 bytes |
コンパイル時間 | 2,703 ms |
コンパイル使用メモリ | 215,536 KB |
実行使用メモリ | 166,016 KB |
最終ジャッジ日時 | 2024-12-21 01:46:30 |
合計ジャッジ時間 | 22,011 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using mint = atcoder::modint998244353; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); string num; cin >> num; vector<int> n; for (char c : num) { n.push_back(c - '0'); } int l = n.size(); vector dp(l + 1, vector(2, vector(2, vector<mint>(1024, 0)))); dp[0][0][0][0] = 1; for (int i = 0; i < l; i++) { for (int smaller = 0; smaller < 2; smaller++) { for (int non_zero = 0; non_zero < 2; non_zero++) { for (int msk = 0; msk < 1024; msk++) { for (int x = 0; x <= (smaller ? 9 : n[i]); x++) { if (x == 0 && non_zero == 0) { dp[i + 1][smaller || (x < n[i])][0][msk] += dp[i][smaller][non_zero][msk]; } else { dp[i + 1][smaller || (x < n[i])][1] [msk ^ (1 << x)] += dp[i][smaller][non_zero][msk]; } } } } } } mint ans = 0; for (int non_zero = 0; non_zero < 2; non_zero++) { ans += dp[l][non_zero][1][0]; } cout << ans.val() << endl; }