#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#ifdef _WIN32
#define getchar_unlocked _getchar_nolock
#endif
//#define int long long
#define mp make_pair
#define mt make_tuple
#define pb push_back
#define ppb pop_back
#define eb emplace_back
#define g0(a) get<0>(a)
#define g1(a) get<1>(a)
#define g2(a) get<2>(a)
#define g3(a) get<3>(a)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef double db;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii;
typedef tuple<int, int, int> iii;
typedef tuple<int, int, int, int> iiii;
typedef tree<ii, null_type, less<ii>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
const int MOD = 1e9 + 7;
int R, S, N, ans, sub, fac[605], invfac[605], A[305][305], dp[305][305][2005];
vector<int> vec;
int exp_mod(int a, int b) {
int r = 1;
while (b) {
if (b & 1ll) r = (ll)r * a % MOD;
a = (ll)a * a % MOD;
b >>= 1ll;
}
return r;
}
main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> R >> S >> N;
fac[0] = invfac[0] = 1;
for (int i = 1; i <= 600; i++) {
fac[i] = (ll)fac[i - 1] * i % MOD;
invfac[i] = exp_mod(fac[i], MOD - 2);
}
sub = (ll)fac[R + S - 2] * invfac[R - 1] % MOD * (ll)invfac[S - 1] % MOD;
N--;
for (int i = 1; i <= R; i++)
for (int j = 1; j <= S; j++) cin >> A[i][j];
for (int i = 1; i <= N; i++) vec.pb(N / i);
sort(vec.begin(), vec.end());
vec.erase(unique(vec.begin(), vec.end()), vec.end());
for (int i = 1; i <= R; i++)
for (int j = 1; j <= S; j++) {
if (i == 1 && j == 1) dp[i][j][N / A[1][1]]++;
else {
for (int k : vec) {
if (i > 1) {
dp[i][j][k / A[i][j]] += dp[i - 1][j][k];
dp[i][j][k / A[i][j]] %= MOD;
}
if (j > 1) {
dp[i][j][k / A[i][j]] += dp[i][j - 1][k];
dp[i][j][k / A[i][j]] %= MOD;
}
}
}
}
for (int i : vec)
ans = (ans + dp[R][S][i]) % MOD;
cout << ((sub - ans) % MOD + MOD) % MOD << '\n';
}
Compilation message
mobitel.cpp:42:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
42 | main() {
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
60 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Runtime error |
57 ms |
65540 KB |
Execution killed with signal 9 |
3 |
Runtime error |
160 ms |
65540 KB |
Execution killed with signal 9 |
4 |
Runtime error |
182 ms |
65540 KB |
Execution killed with signal 9 |
5 |
Runtime error |
169 ms |
65540 KB |
Execution killed with signal 9 |
6 |
Runtime error |
164 ms |
65540 KB |
Execution killed with signal 9 |
7 |
Runtime error |
155 ms |
65540 KB |
Execution killed with signal 9 |
8 |
Runtime error |
258 ms |
65540 KB |
Execution killed with signal 9 |
9 |
Runtime error |
328 ms |
65540 KB |
Execution killed with signal 9 |
10 |
Runtime error |
313 ms |
65540 KB |
Execution killed with signal 9 |