結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-14 15:09:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 945 bytes
コンパイル時間 5,231 ms
コンパイル使用メモリ 264,608 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-05-04 14:48:07
合計ジャッジ時間 8,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

//TLE(?)

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
using namespace std;
using namespace atcoder;
using ll = long long;
template <class T>	using V = vector<T>;
const ll mod = 1000000007;


int main(void) {
	int N, K;	cin >> N >> K;
	V<int> a(N);
	rep(i, 0, N) {
		cin >> a[i];
	}
	string s;	cin >> s;

	V<V<int> > up(N, V<int>({}));
	V<V<int> > down(N, V<int>({}));
	rep(i, 0, N) {
		rep(j, 0, i) {
			if (a[j] > a[i]) {
				up[i].push_back(j);
			}
			if (a[j] < a[i]) {
				down[i].push_back(j);
			}
		}
	}

	V<ll> dp(N, 1);
	rep(i, 0, K) {
		V<ll> ndp(N);
		rep(j, 0, N) {
			if (s[i] == '<') {
				for (int k : down[j]) {
					ndp[j] += dp[k];
					ndp[j] %= mod;
				}
			}
			else {
				for (int k : up[j]) {
					ndp[j] += dp[k];
					ndp[j] %= mod;
				}
			}
		}
		dp = ndp;
	}

	ll ans = 0;
	for (ll t : dp) {
		ans += t;
		ans %= mod;
	}
	cout << ans << endl;

	return 0;
}
0