結果

問題 No.2926 Botaoshi
ユーザー startcppstartcpp
提出日時 2024-10-12 15:51:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 94,212 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-10-12 15:52:01
合計ジャッジ時間 2,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 3 ms
5,760 KB
testcase_12 AC 14 ms
7,424 KB
testcase_13 AC 14 ms
7,552 KB
testcase_14 AC 14 ms
7,296 KB
testcase_15 AC 4 ms
5,760 KB
testcase_16 AC 12 ms
6,912 KB
testcase_17 AC 15 ms
7,168 KB
testcase_18 AC 6 ms
5,964 KB
testcase_19 AC 11 ms
6,656 KB
testcase_20 AC 6 ms
5,888 KB
testcase_21 AC 9 ms
6,528 KB
testcase_22 AC 9 ms
6,656 KB
testcase_23 AC 4 ms
6,016 KB
testcase_24 AC 10 ms
6,816 KB
testcase_25 AC 5 ms
5,968 KB
testcase_26 AC 12 ms
7,040 KB
testcase_27 AC 9 ms
6,656 KB
testcase_28 AC 4 ms
6,144 KB
testcase_29 AC 4 ms
5,888 KB
testcase_30 AC 6 ms
6,016 KB
testcase_31 AC 5 ms
5,840 KB
testcase_32 AC 7 ms
6,400 KB
testcase_33 AC 13 ms
6,912 KB
testcase_34 AC 12 ms
6,912 KB
testcase_35 AC 3 ms
5,760 KB
testcase_36 AC 15 ms
7,424 KB
testcase_37 AC 15 ms
7,424 KB
testcase_38 AC 15 ms
7,296 KB
testcase_39 AC 14 ms
7,424 KB
testcase_40 AC 14 ms
7,424 KB
testcase_41 AC 15 ms
7,384 KB
testcase_42 AC 15 ms
7,424 KB
testcase_43 AC 15 ms
7,424 KB
testcase_44 AC 16 ms
7,424 KB
testcase_45 AC 15 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cstdio>
#include <cmath>
#include <cassert>
#include <atcoder/modint>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;
using namespace atcoder;
using mint = modint998244353;

int n;
string s;
mint dp[200001][3]; //L, R, U

signed main() {
    int i, j, k;

    cin >> n >> s;
    vector<int> a(n);
    rep(i, n) {
        if (s[i] == '.') a[i] = -1;
        if (s[i] == 'L') a[i] = 0;
        if (s[i] == 'R') a[i] = 1;
        if (s[i] == 'U') a[i] = 2;
    }

    dp[0][2] = 1;

    rep(i, n) {
        rep(j, 3) {
            rep(k, 3) {
                if (a[i] != -1 && k != a[i]) continue;
                if (j == 1 && k == 0) continue;
                dp[i + 1][k] += dp[i][j];
            }
        }
    }

    /*rep(i, n + 1) {
        rep(j, 3) {
            cout << dp[i][j].val() << " ";
        }
        cout << endl;
    }*/

    mint ans = 0;
    rep(i, 3) ans += dp[n][i];
    
    cout << ans.val() << endl;
    return 0;
}
0