結果

問題 No.1740 Alone 'a'
ユーザー miscalcmiscalc
提出日時 2021-11-12 22:08:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,854 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 210,212 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-05-04 08:58:43
合計ジャッジ時間 5,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 159 ms
33,152 KB
testcase_04 AC 164 ms
33,280 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 29 ms
8,704 KB
testcase_12 AC 124 ms
27,352 KB
testcase_13 AC 120 ms
25,816 KB
testcase_14 AC 145 ms
31,616 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 112 ms
25,088 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 20 ms
7,040 KB
testcase_19 AC 121 ms
27,392 KB
testcase_20 AC 67 ms
15,744 KB
testcase_21 AC 94 ms
20,480 KB
testcase_22 AC 104 ms
23,808 KB
testcase_23 AC 107 ms
23,680 KB
testcase_24 AC 72 ms
15,872 KB
testcase_25 AC 69 ms
16,128 KB
testcase_26 AC 90 ms
19,984 KB
testcase_27 AC 103 ms
21,376 KB
testcase_28 AC 82 ms
18,176 KB
testcase_29 AC 146 ms
31,724 KB
testcase_30 AC 95 ms
20,992 KB
testcase_31 AC 109 ms
24,576 KB
testcase_32 AC 84 ms
18,432 KB
testcase_33 AC 108 ms
24,320 KB
testcase_34 AC 24 ms
7,680 KB
testcase_35 AC 79 ms
17,792 KB
testcase_36 AC 66 ms
15,360 KB
testcase_37 AC 25 ms
7,680 KB
testcase_38 AC 54 ms
13,312 KB
testcase_39 AC 10 ms
5,376 KB
testcase_40 AC 34 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
//using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

int main()
{
  ll N;
  string S;
  cin >> N >> S;

  vector dp(N + 1, vector(2, vector(2, mint(0))));
  dp.at(0).at(0).at(0) = 1;
  for (ll i = 0; i < N; i++)
  {
    for (ll b1 = 0; b1 < 2; b1++)
    {
      for (ll b2 = 0; b2 < 2; b2++)
      {
        for (char c = 'a'; c <= 'z'; c++)
        {
          ll nb1 = b1 + (c == 'a' ? 1 : 0);
          if (nb1 == 2)
            continue;

          ll nb2;
          if (c < S.at(i))
          {
            nb2 = 1;
          }
          else if (c == S.at(i))
          {
            nb2 = b2;
          }
          else
          {
            if (b2 == 0)
              continue;
            nb2 = 1;
          }

          dp.at(i + 1).at(nb1).at(nb2) += dp.at(i).at(b1).at(b2);
        }
      }
    }
  }

  mint ans = dp.at(N).at(1).at(1);
  cout << ans.val() << endl;

  /*
  for (ll i = 0; i < N + 1; i++)
  {
    for (ll b1 = 0; b1 < 2; b1++)
    {
      for (ll b2 = 0; b2 < 2; b2++)
      {
        cerr << i << " " << b1 << " " << b2 << "  " << dp.at(i).at(b1).at(b2).val() << endl;
      }
    }
  }
  //*/
}
0