結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-14 15:09:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 945 bytes
コンパイル時間 4,054 ms
コンパイル使用メモリ 265,120 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-11-26 02:58:18
合計ジャッジ時間 39,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
15,232 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
15,232 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
15,232 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 1 ms
15,360 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,526 ms
8,576 KB
testcase_19 AC 1,990 ms
9,472 KB
testcase_20 AC 1,915 ms
9,856 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 29 ms
5,248 KB
testcase_24 AC 1,364 ms
7,680 KB
testcase_25 AC 477 ms
5,504 KB
testcase_26 AC 1,181 ms
8,064 KB
testcase_27 AC 128 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 511 ms
6,272 KB
testcase_30 AC 10 ms
5,248 KB
testcase_31 AC 120 ms
5,248 KB
testcase_32 AC 4 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

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