Submission #225017

# Submission time Handle Problem Language Result Execution time Memory
225017 2020-04-19T08:07:14 Z NONAME Mobitel (COCI19_mobitel) C++17
0 / 130
6000 ms 65540 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];
unordered_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 Runtime error 783 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 810 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Execution timed out 6064 ms 9068 KB Time limit exceeded
4 Execution timed out 6079 ms 8188 KB Time limit exceeded
5 Execution timed out 6063 ms 8996 KB Time limit exceeded
6 Execution timed out 6064 ms 9588 KB Time limit exceeded
7 Execution timed out 6058 ms 11600 KB Time limit exceeded
8 Execution timed out 6051 ms 6544 KB Time limit exceeded
9 Execution timed out 6099 ms 5752 KB Time limit exceeded
10 Execution timed out 6079 ms 6264 KB Time limit exceeded