結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-04 20:48:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 714 bytes
コンパイル時間 3,762 ms
コンパイル使用メモリ 262,268 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-05-04 14:45:33
合計ジャッジ時間 7,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,760 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 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<ll> a(N), b(N);
	rep(i, 0, N) {
		cin >> a[i];
	}
	string s;	cin >> s;

	V<ll> dp(N, 1);
	rep(i, 0, K) {
		V<ll> ndp(N);
		ll t = 1;
		if (s[i] == '>') {
			t = -1;
		}
		rep(j, 0, N) {
			rep(k, 0, j) {
				ndp[j] += ((a[k] - a[j]) * t < 0) * dp[k];
				ndp[j] %= mod;
			}
		}
		rep(j, 0, N) {
			dp[j] = ndp[j];
		}
	}

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

	return 0;
}
0