結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2022-05-04 20:48:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 714 bytes
コンパイル時間 4,290 ms
コンパイル使用メモリ 262,168 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-26 02:53:14
合計ジャッジ時間 49,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,576 KB
testcase_02 AC 2 ms
10,272 KB
testcase_03 AC 2 ms
8,704 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
8,448 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,576 KB
testcase_08 AC 3 ms
10,496 KB
testcase_09 AC 2 ms
8,704 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 TLE -
testcase_12 TLE -
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 AC 61 ms
5,248 KB
testcase_24 TLE -
testcase_25 AC 1,032 ms
5,248 KB
testcase_26 TLE -
testcase_27 AC 271 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1,082 ms
5,248 KB
testcase_30 AC 17 ms
5,248 KB
testcase_31 AC 259 ms
5,248 KB
testcase_32 AC 5 ms
13,824 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<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