Submission #1100442

#TimeUsernameProblemLanguageResultExecution timeMemory
1100442vjudge1Mobitel (COCI19_mobitel)C++17
130 / 130
2951 ms19640 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; #define int long long #define FOR(i, a, b) for (int i = (a); i <= (b); i++) #define FORD(i, a, b) for (int i = (b); i >= (a); i --) #define REP(i, a) for (int i = 0; i < (a); ++i) #define REPD(i, a) for (int i = (a) - 1; i >= 0; --i) #define MASK(i) (1LL << (i)) #define BIT(x, i) (((x) >> (i)) & 1) constexpr ll LINF = (1ll << 60); constexpr int INF = (1ll << 30); constexpr int Mod = 1e9 + 7; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); /* Phu Trong from Nguyen Tat Thanh High School for gifted student */ template <class X, class Y> bool minimize(X &x, const Y &y){ X eps = 1e-9; if (x > y + eps) {x = y; return 1;} return 0; } template <class X, class Y> bool maximize(X &x, const Y &y){ X eps = 1e-9; if (x + eps < y) {x = y; return 1;} return 0; } #define MAX 303 int numRow, numCol, Lim; int A[MAX][MAX]; int dp[2][MAX][2005]; int cnt[MAX][MAX]; vector<int> comp; int find(int x){ return upper_bound(comp.begin(), comp.end(), x) - comp.begin() - 1; } void process(void){ cin >> numRow >> numCol >> Lim; FOR(i, 1, numRow) FOR(j, 1, numCol){ cin >> A[i][j]; } --Lim; for (int i = 1; i <= Lim; ++i){ comp.emplace_back(Lim / i); } sort(comp.begin(), comp.end()); comp.resize(unique(comp.begin(), comp.end()) - comp.begin()); cnt[1][1] = 1; for (int i = 1; i <= numRow; ++i){ for (int j = 1; j <= numCol; ++j) if(i != 1 || j != 1){ cnt[i][j] = (cnt[i][j - 1] + cnt[i - 1][j]) % Mod; } } dp[0][1][(int)comp.size() - 1] = 1; FOR(i, 1, numRow) { memset(dp[1], 0, sizeof dp[1]); FOR(j, 1, numCol) REP(f, (int)comp.size()){ int nxt = find(comp[f] / A[i][j]); if(nxt < 0) continue; dp[1][j][nxt] = (dp[1][j][nxt] + dp[0][j][f] + dp[1][j - 1][f]) % Mod; } swap(dp[1], dp[0]); } int ans = 0; for (int i = 0; i < (int)comp.size(); ++i){ ans += dp[0][numCol][i]; ans %= Mod; } cout << (cnt[numRow][numCol] - ans + Mod) % Mod; } signed main(){ #define name "Whisper" cin.tie(nullptr) -> sync_with_stdio(false); //freopen(name".inp", "r", stdin); //freopen(name".out", "w", stdout); process(); return (0 ^ 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...