Submission #225204

# Submission time Handle Problem Language Result Execution time Memory
225204 2020-04-19T14:31:21 Z Vimmer Mobitel (COCI19_mobitel) C++14
0 / 130
266 ms 65540 KB
#include <bits/stdc++.h>

//#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")

#define F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define N 200005
#define MOD ll(998244353)

using namespace std;

typedef long long ll;

typedef long double ld;


int dp[305][305][305], a[305][305];

int main()
{

    ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    int n, m, k;

    cin >> n >> m >> k;

    if (k > 300) exit(0);

    for (int i = 0; i < n; i++)
        for (int j = 0; j < m; j++) cin >> a[i][j];

    if (a[0][0] <= k) dp[0][0][a[0][0]] = 1; else dp[0][0][k] = 1;

    for (int i = 0; i < n; i++)
        for (int j = 0; j < m; j++)
          for (int u = 0; u <= k; u++)
            {
                if (i + 1 != n) dp[i + 1][j][min(k, u * a[i + 1][j])] = (dp[i + 1][j][min(k, u * a[i + 1][j])] + dp[i][j][u]) % MOD;

                if (j + 1 != m) dp[i][j + 1][min(k, u * a[i][j + 1])] = (dp[i][j + 1][min(k, u * a[i][j + 1])] + dp[i][j][u]) % MOD;
            }

    cout << dp[n - 1][m - 1][k];
}
# Verdict Execution time Memory Grader output
1 Runtime error 264 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 266 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Incorrect 4 ms 384 KB Output isn't correct
4 Incorrect 6 ms 384 KB Output isn't correct
5 Incorrect 4 ms 384 KB Output isn't correct
6 Incorrect 4 ms 384 KB Output isn't correct
7 Incorrect 5 ms 384 KB Output isn't correct
8 Incorrect 5 ms 384 KB Output isn't correct
9 Incorrect 4 ms 384 KB Output isn't correct
10 Incorrect 5 ms 384 KB Output isn't correct