#include <stdio.h>
#define N 300
#define M 300
#define B 1000
#define MD 1000000007
int vv[N + M], ff[N + M], gg[N + M];
void init() {
int i;
ff[0] = gg[0] = 1;
for (i = 1; i < N + M; i++) {
vv[i] = i == 1 ? 1 : (long long) vv[i - MD % i] * (MD / i + 1) % MD;
ff[i] = (long long) ff[i - 1] * i % MD;
gg[i] = (long long) gg[i - 1] * vv[i] % MD;
}
}
int choose(int n, int k) {
return (long long) ff[n] * gg[k] % MD * gg[n - k] % MD;
}
int main() {
static int aa[N][M], dp[N][M][B], dq[M][B];
int n, m, c, i, j, a, b, b1, b2, x, ans;
init();
scanf("%d%d%d", &n, &m, &c);
for (i = 0; i < n; i++)
for (j = 0; j < m; j++)
scanf("%d", &aa[i][j]);
if (c == 1)
ans = 0;
else {
for (i = 0; i < n; i++)
for (j = 0; j < m; j++)
if (i == 0 && j == 0)
dp[i][j][1] = 1;
else
for (b = B - 1; b >= 1; b--) {
dp[i][j][b] = 0;
if (i > 0 && b % (a = aa[i - 1][j]) == 0)
dp[i][j][b] = (dp[i][j][b] + dp[i - 1][j][b / a]) % MD;
if (j > 0 && b % (a = aa[i][j - 1]) == 0)
dp[i][j][b] = (dp[i][j][b] + dp[i][j - 1][b / a]) % MD;
}
a = aa[n - 1][m - 1];
ans = 0;
for (b = 0; b * a < c && b * a < B; b++)
ans = (ans + dp[n - 1][m - 1][b]) % MD;
for (i = n - 1; i >= 0; i--) {
for (j = m - 1; j >= 0; j--)
if (i == n - 1 && j == m - 1)
dq[j][1] = 1;
else
for (b = B - 1; b >= 1; b--) {
int x = dq[j][b];
dq[j][b] = 0;
if (i + 1 < n && b % (a = aa[i + 1][j]) == 0)
dq[j][b] = (dq[j][b] + (a == 1 ? x : dq[j][b / a])) % MD;
if (j + 1 < m && b % (a = aa[i][j + 1]) == 0)
dq[j][b] = (dq[j][b] + dq[j + 1][b / a]) % MD;
}
for (j = m - 1; j >= 0; j--) {
a = aa[i][j];
for (b1 = B - 1, b2 = 1, x = 0; b1 * a >= B; b1--) {
while (b2 < B && (long long) b1 * a * b2 < c)
x = (x + dq[j][b2++]) % MD;
ans = (ans + (long long) dp[i][j][b1] * x) % MD;
}
}
}
}
ans = (choose(n - 1 + m - 1, n - 1) - ans + MD) % MD;
printf("%d\n", ans);
return 0;
}
Compilation message
mobitel.c: In function 'main':
mobitel.c:30:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
30 | scanf("%d%d%d", &n, &m, &c);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
mobitel.c:33:4: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
33 | scanf("%d", &aa[i][j]);
| ^~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
246 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Runtime error |
249 ms |
65540 KB |
Execution killed with signal 9 |
3 |
Correct |
294 ms |
40008 KB |
Output is correct |
4 |
Correct |
294 ms |
40536 KB |
Output is correct |
5 |
Correct |
291 ms |
40468 KB |
Output is correct |
6 |
Correct |
290 ms |
40064 KB |
Output is correct |
7 |
Correct |
142 ms |
20172 KB |
Output is correct |
8 |
Runtime error |
248 ms |
65540 KB |
Execution killed with signal 9 |
9 |
Runtime error |
244 ms |
65540 KB |
Execution killed with signal 9 |
10 |
Runtime error |
249 ms |
65540 KB |
Execution killed with signal 9 |