結果

問題 No.2794 I Love EDPC-T
ユーザー 箱星箱星
提出日時 2023-02-04 02:07:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,396 bytes
コンパイル時間 3,734 ms
コンパイル使用メモリ 242,288 KB
実行使用メモリ 40,852 KB
最終ジャッジ日時 2024-12-20 21:21:44
合計ジャッジ時間 86,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
14,824 KB
testcase_01 AC 11 ms
13,440 KB
testcase_02 AC 12 ms
13,440 KB
testcase_03 AC 11 ms
14,860 KB
testcase_04 AC 12 ms
13,440 KB
testcase_05 AC 11 ms
24,044 KB
testcase_06 AC 105 ms
13,568 KB
testcase_07 AC 177 ms
14,964 KB
testcase_08 AC 257 ms
13,696 KB
testcase_09 AC 11 ms
14,752 KB
testcase_10 AC 11 ms
13,440 KB
testcase_11 AC 11 ms
14,884 KB
testcase_12 AC 11 ms
37,928 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 17 ms
38,436 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main() {
    const int fac_size = 600000;
    vector<mint> fac(fac_size);
    vector<mint> inv_fac(fac_size);
    fac[0] = 1;
    inv_fac[0] = 1;
    for (int i = 1; i < fac_size; i++) {
    	fac[i] = fac[i - 1] * i;
    }
    inv_fac[fac_size - 1] = 1 / fac[fac_size - 1];
    for (int i = fac_size - 2; i >= 1; i--) {
    	inv_fac[i] = inv_fac[i + 1] * (i + 1);
    }
    
    int n;
    string s;
    cin >> n;
    cin >> s;
    int p = 0;
    for (int i = 0; i < n - 1; i++) {
    	if (s[i] == '<') {
    		p++;
    	}
    }
    if (p == 0) {
    	cout << 0 << endl;
    	return 0;
    }
    p %= 2;
    vector<vector<mint>> dp(n, vector<mint>(2));
    dp[0][0] = 1;
    for (int i = 0; i < n - 1; i++) {
    	vector<vector<mint>> newdp(n, vector<mint>(2));
    	for (int j = 0; j <= i; j++) {
    		if (s[i] == '>') {
    			newdp[j][0] += dp[j][0] + dp[j][1];
    		}
    		newdp[j + 1][1] += dp[j][0]; 
    	}
    	dp = newdp;
    }
    mint ans = 0;
    for (int i = 0; i < n; i++) {
    	mint num = fac[2 * (n - i)] * inv_fac[n - i] * inv_fac[n - i] / (n - i + 1) * (dp[i][0] + dp[i][1]);
    	if (i % 2 == p) {
    		ans += num;
    	} else {
    		ans -= num;
    	}
    }
    cout << ans.val() << endl;
    return 0;
}
0