結果

問題 No.2926 Botaoshi
ユーザー yonihayoniha
提出日時 2024-10-12 15:56:05
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,541 ms / 2,000 ms
コード長 1,516 bytes
コンパイル時間 6,075 ms
コンパイル使用メモリ 335,992 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-10-12 15:56:45
合計ジャッジ時間 39,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1,511 ms
14,464 KB
testcase_13 AC 1,426 ms
14,080 KB
testcase_14 AC 1,468 ms
14,080 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1,042 ms
11,064 KB
testcase_17 AC 1,309 ms
12,928 KB
testcase_18 AC 232 ms
5,248 KB
testcase_19 AC 841 ms
9,720 KB
testcase_20 AC 370 ms
6,144 KB
testcase_21 AC 664 ms
8,320 KB
testcase_22 AC 797 ms
9,344 KB
testcase_23 AC 123 ms
5,248 KB
testcase_24 AC 942 ms
10,240 KB
testcase_25 AC 235 ms
5,248 KB
testcase_26 AC 1,141 ms
11,808 KB
testcase_27 AC 702 ms
8,576 KB
testcase_28 AC 133 ms
5,248 KB
testcase_29 AC 86 ms
5,248 KB
testcase_30 AC 372 ms
6,144 KB
testcase_31 AC 234 ms
5,248 KB
testcase_32 AC 495 ms
7,040 KB
testcase_33 AC 1,050 ms
11,008 KB
testcase_34 AC 881 ms
9,856 KB
testcase_35 AC 19 ms
5,248 KB
testcase_36 AC 1,520 ms
14,336 KB
testcase_37 AC 1,488 ms
14,336 KB
testcase_38 AC 1,534 ms
14,336 KB
testcase_39 AC 1,534 ms
14,336 KB
testcase_40 AC 1,541 ms
14,464 KB
testcase_41 AC 1,476 ms
14,336 KB
testcase_42 AC 1,500 ms
14,464 KB
testcase_43 AC 1,518 ms
14,464 KB
testcase_44 AC 1,421 ms
13,952 KB
testcase_45 AC 1,449 ms
13,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define all(x) (x).begin(), (x).end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for(int i = (int)(n - 1); i >= 0; i--)
template <typename T> bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template <typename T> bool chmin(T &a,const T &b){if(a>b){a=b;return true;}return false;}
using ll = long long;
#define int ll
using vi = vector<int>;
using vvi = vector<vector<int>>;
using vb = vector<bool>;
using vvb = vector<vector<bool>>;
using vs = vector<string>;
using pii = pair<int, int>;
using mint = modint998244353;

signed main(){
  int n; string s; cin >> n >> s;
  vector<vector<mint>> dp(n + 1, vector<mint>(3, mint(0))); //0は直立、1は左、2は右
  dp.at(0).at(0) = 1;
  rep(i, n){
  	if(s.at(i) == 'U') dp.at(i + 1).at(0) = dp.at(i).at(0) + dp.at(i).at(1) + dp.at(i).at(2);
  	if(s.at(i) == 'L') dp.at(i + 1).at(1) = dp.at(i).at(0) + dp.at(i).at(1);
  	if(s.at(i) == 'R') dp.at(i + 1).at(2) = dp.at(i).at(0) + dp.at(i).at(1) + dp.at(i).at(2);
  	if(s.at(i) == '.'){
  		dp.at(i + 1).at(0) = dp.at(i).at(0) + dp.at(i).at(1) + dp.at(i).at(2);
  		dp.at(i + 1).at(1) = dp.at(i).at(0) + dp.at(i).at(1);
  		dp.at(i + 1).at(2) = dp.at(i).at(0) + dp.at(i).at(1) + dp.at(i).at(2);
  	}
  }
  mint ans = dp.at(n).at(0) + dp.at(n).at(1) + dp.at(n).at(2);
  rep(i, n + 1) rep(j, 3) cerr << dp.at(i).at(j).val() << (j == 2 ? '\n' : ' ');
  cout << ans.val() << endl;
}
0