結果

問題 No.2926 Botaoshi
ユーザー masamasa
提出日時 2024-10-12 16:15:51
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 128,024 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-10-12 16:15:57
合計ジャッジ時間 3,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 25 ms
17,388 KB
testcase_13 AC 24 ms
17,024 KB
testcase_14 AC 25 ms
17,120 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 5 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 4 ms
5,248 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 20 ms
14,080 KB
testcase_27 AC 13 ms
9,856 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 8 ms
6,784 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 25 ms
17,420 KB
testcase_37 AC 24 ms
17,484 KB
testcase_38 AC 25 ms
17,536 KB
testcase_39 AC 25 ms
17,492 KB
testcase_40 AC 25 ms
17,512 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 6 ms
5,248 KB
testcase_44 WA -
testcase_45 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <string>
#include <utility>
#include <tuple>
#include <set>
#include <map>
#include <cassert>

using namespace std;

const int mod = 998244353;

using VL = vector<long long>;
using VVL = vector<VL>;
using VVVL = vector<VVL>;

int main() {
	int n;
	string s;
	cin >> n >> s;

	if (s.find("LR") != string::npos) {
		cout << 0 << endl;
		return 0;
	}

	// [iまでみた][棒の状態 LRUの順]
	VVL dp(n+1, VL(4, 0));
	dp[0][2] = 1;  // 初期は倒れていない

	for (int i = 0; i < n; i++) {
		if (s[i] == 'L') {
			dp[i+1][0] = dp[i][0] + dp[i][2];  // 右はだめ
		} else if (s[i] == 'R') {
			dp[i+1][1] = dp[i][0] + dp[i][1] + dp[i][2];
		} else if (s[i] == 'U') {
			dp[i+1][2] = dp[i][0] + dp[i][1] + dp[i][2];
		} else {
			// dot
			dp[i+1][0] = dp[i][0] + dp[i][2];  // 右はだめ
			dp[i+1][1] = dp[i][0] + dp[i][1] + dp[i][2];
			dp[i+1][2] = dp[i][0] + dp[i][1] + dp[i][2];
		}


		for (int j = 0; j < 3; j++) {
			dp[i+1][j] %= mod;
		}
	}

	long long ans = 0;
	ans += dp.back()[0];
	ans += dp.back()[1];
	ans += dp.back()[2];
	ans %= mod;

	cout << ans << endl;
	return 0;
}
0