結果

問題 No.1740 Alone 'a'
ユーザー miscalcmiscalc
提出日時 2021-11-12 22:08:15
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,854 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 207,476 KB
実行使用メモリ 32,976 KB
最終ジャッジ日時 2023-08-17 01:45:52
合計ジャッジ時間 6,419 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 168 ms
32,924 KB
testcase_04 AC 169 ms
32,976 KB
testcase_05 AC 7 ms
4,464 KB
testcase_06 AC 6 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 31 ms
8,720 KB
testcase_12 AC 130 ms
27,120 KB
testcase_13 AC 123 ms
25,800 KB
testcase_14 AC 153 ms
31,400 KB
testcase_15 AC 3 ms
4,376 KB
testcase_16 AC 118 ms
24,928 KB
testcase_17 AC 3 ms
4,380 KB
testcase_18 AC 21 ms
6,872 KB
testcase_19 AC 130 ms
27,160 KB
testcase_20 AC 73 ms
15,464 KB
testcase_21 AC 98 ms
20,272 KB
testcase_22 AC 111 ms
23,740 KB
testcase_23 AC 112 ms
23,512 KB
testcase_24 AC 73 ms
15,764 KB
testcase_25 AC 73 ms
15,736 KB
testcase_26 AC 97 ms
20,012 KB
testcase_27 AC 104 ms
21,056 KB
testcase_28 AC 86 ms
17,956 KB
testcase_29 AC 154 ms
31,476 KB
testcase_30 AC 102 ms
20,680 KB
testcase_31 AC 117 ms
24,336 KB
testcase_32 AC 87 ms
18,156 KB
testcase_33 AC 113 ms
24,268 KB
testcase_34 AC 26 ms
7,384 KB
testcase_35 AC 84 ms
17,628 KB
testcase_36 AC 70 ms
15,248 KB
testcase_37 AC 26 ms
7,596 KB
testcase_38 AC 59 ms
13,096 KB
testcase_39 AC 10 ms
4,784 KB
testcase_40 AC 36 ms
9,444 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