#include #include using namespace std; #include using mint = atcoder::modint998244353; int main() { cin.tie(nullptr)->sync_with_stdio(false); int N, M, K; cin >> N >> M >> K; vector S(N), A(M), B(M); for (auto &x : S) cin >> x, --x; for (auto &x : A) cin >> x; for (auto &x : B) cin >> x; vector dpall(K + 1); dpall.at(K) = 1; vector dp(M, vector(K + 1)); for (int s : S) { int a = A.at(s), b = B.at(s); for (int k = 0; k <= K; ++k) { if (k - a >= 0) dpall.at(k - a) += dpall.at(k) + dp.at(s).at(k); if (k - b >= 0) dpall.at(k - b) += dpall.at(k) + dp.at(s).at(k); dp.at(s).at(k) = -dpall.at(k); } } cout << dpall.front().val() << '\n'; }