結果

問題 No.2926 Botaoshi
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 00:22:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 2,564 ms
コンパイル使用メモリ 215,156 KB
実行使用メモリ 14,316 KB
最終ジャッジ日時 2024-10-15 00:22:46
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 21 ms
14,292 KB
testcase_13 AC 20 ms
14,096 KB
testcase_14 AC 21 ms
13,924 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 18 ms
10,880 KB
testcase_17 AC 21 ms
12,804 KB
testcase_18 AC 6 ms
6,820 KB
testcase_19 AC 15 ms
9,392 KB
testcase_20 AC 8 ms
6,820 KB
testcase_21 AC 12 ms
8,192 KB
testcase_22 AC 14 ms
9,216 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 15 ms
10,240 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 18 ms
11,648 KB
testcase_27 AC 12 ms
8,320 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 7 ms
6,820 KB
testcase_31 AC 5 ms
6,816 KB
testcase_32 AC 10 ms
6,912 KB
testcase_33 AC 17 ms
10,928 KB
testcase_34 AC 15 ms
9,784 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 22 ms
14,256 KB
testcase_37 AC 22 ms
14,308 KB
testcase_38 AC 22 ms
14,292 KB
testcase_39 AC 21 ms
14,240 KB
testcase_40 AC 21 ms
14,316 KB
testcase_41 AC 23 ms
14,304 KB
testcase_42 AC 23 ms
14,200 KB
testcase_43 AC 24 ms
14,276 KB
testcase_44 AC 22 ms
13,988 KB
testcase_45 AC 23 ms
13,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;
using ll = long long;
using mint=modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    map<char, int> mp;
    mp['R'] = 0;
    mp['L'] = 1;
    mp['U'] = 2;
    mp['.'] = 3;
    int N, c;
    string S;
    cin >> N >> S;
    vector dp(N+1, vector<mint>(3));
    if (S[0] != '.') dp[1][mp[S[0]]] += 1;
    else{
        for (int i=0; i<3; i++) dp[1][i] += 1;
    }

    for (int i=2; i<=N; i++){
        c = mp[S[i-1]];
        for (int j=0; j<3; j++){
            for (int k=0; k<3; k++){
                if (c != 3 && k != c) continue;
                if (j == 0 && k == 1) continue;
                dp[i][k] += dp[i-1][j];
            }
        }
    }

    cout << (dp[N][0]+dp[N][1]+dp[N][2]).val() << endl;

    return 0;
}
0