Submission #225015

# Submission time Handle Problem Language Result Execution time Memory
225015 2020-04-19T08:05:45 Z NONAME Mobitel (COCI19_mobitel) C++17
26 / 130
6000 ms 16188 KB
#include <bits/stdc++.h>
#include <time.h>
//#include <random>
#define sz(x) int(x.size())
#define in(x) freopen(x, "r", stdin)
#define out(x) freopen(x, "w", stdout)
#define N 100500
#define oo ll(1e16)
#define pii pair <int, int>
#define pll pair <ll, ll>
#define ft first
#define sd second
#define pb push_back
#define ppb pop_back
#define mp make_pair
#define el '\n'
#define elf endl
#define base ll(1e9 + 7)
#define re return
#define nins 4294967295
using namespace std;
typedef long long ll;
typedef long double ld;

//mt19937 rnd(0);

int n, m, mx, a[300][300];
map <int, int> f[300][300];
//int f[300][300][301];

void add(int &x, int y) {
    x += y;

    if (x >= base)
        x -= base;
}

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

    f[0][0][min(mx, a[0][0])] = 1;
    ll ans = 0;

    for (int i = 0; i < n; i++)
    for (int j = 0; j < m; j++) {
        for (int k = 1; k <= mx; k++) {
            if (f[i][j].count(k) == 0)
                continue;

            if (i + 1 != n)
                add(f[i + 1][j][min(1ll * mx, a[i + 1][j] * 1ll * k)], f[i][j][k]);

            if (j + 1 != m)
                add(f[i][j + 1][min(1ll * mx, a[i][j + 1] * 1ll * k)], f[i][j][k]);
        }
        ans = f[i][j][mx];

        f[i][j].clear();
    }

    cout << ans;
}

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    #ifdef _LOCAL
        in("input.txt");

        int t = 1;
//        cin >> t;
        for (int i = 1; i <= t; i++) {
            cout << "Test #" << i << elf;

            clock_t start_time = clock();

            solve();

            cerr.precision(4); cerr << fixed;
            cerr << elf;
            cerr << "Time :: " << ld(clock() - start_time) / CLOCKS_PER_SEC << elf;

            cout << elf;
        }
    #else
        int t = 1;
//        cin >> t;

        while (t--) {
            solve();
            cout << el;
        }
    #endif
}
# Verdict Execution time Memory Grader output
1 Correct 3787 ms 6988 KB Output is correct
2 Correct 4056 ms 7240 KB Output is correct
3 Execution timed out 6054 ms 8208 KB Time limit exceeded
4 Execution timed out 6067 ms 8052 KB Time limit exceeded
5 Execution timed out 6065 ms 16188 KB Time limit exceeded
6 Execution timed out 6059 ms 12300 KB Time limit exceeded
7 Execution timed out 6062 ms 15832 KB Time limit exceeded
8 Execution timed out 6091 ms 8492 KB Time limit exceeded
9 Execution timed out 6089 ms 6844 KB Time limit exceeded
10 Execution timed out 6096 ms 7544 KB Time limit exceeded