#include <iostream>
#include <vector>
#include <cassert>
#include <cstring>
const int maxn = 300 + 10, mod = 1e9+7;
int n, l;
int size[maxn];
std::pair < int, int > p[maxn];
int dp[maxn][maxn][maxn][2][2];
int f(int ix, int len, int balance, bool begin, bool end) {
if (balance < 0 || balance >= maxn || len > l) return 0;
if (ix == n+1) return (len == l && balance == maxn/2 && begin && end);
int res = f(ix+1, len, balance, begin, end);
if ((begin && (p[ix].first == 0)) || (end && (p[ix].second == 0))) return dp[ix][len][balance][begin][end] = res;
int new_bal = balance;
if (p[ix].first == 1) ++new_bal;
if (p[ix].second == 1) --new_bal;
res += f(ix+1, len + size[ix], new_bal, begin || (p[ix].first == 0), end || (p[ix].second == 0));
if (res >= mod) res -= mod;
return dp[ix][len][balance][begin][end] = res;
}
std::string front, back;
void read() {
std::cin >> n >> l;
for (int i = 1 ; i <= n ; ++i) {
std::cin >> size[i] >> front >> back;
if (front == "none") p[i].first = 0;
if (front == "in") p[i].first = 1;
if (front == "out") p[i].first = 2;
if (back == "none") p[i].second = 0;
if (back == "out") p[i].second = 1;
if (back == "in") p[i].second = 2;
}
memset(dp, -1, sizeof(dp));
std::cout << f(1, 0, maxn/2, 0, 0) << '\n';
}
void fast_io() {
std::ios_base :: sync_with_stdio(0);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
}
signed main () {
fast_io();
read();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
175 ms |
466720 KB |
Output is correct |
2 |
Incorrect |
165 ms |
466680 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3095 ms |
466608 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
168 ms |
466608 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
168 ms |
466608 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
175 ms |
466720 KB |
Output is correct |
2 |
Incorrect |
165 ms |
466680 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |