結果
問題 | No.1703 Much Matching |
ユーザー | jupiro |
提出日時 | 2021-10-08 22:44:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 261 ms / 2,000 ms |
コード長 | 2,076 bytes |
コンパイル時間 | 2,615 ms |
コンパイル使用メモリ | 212,976 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-07-23 05:49:41 |
合計ジャッジ時間 | 5,897 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 13 ms
9,600 KB |
testcase_04 | AC | 10 ms
7,808 KB |
testcase_05 | AC | 26 ms
16,128 KB |
testcase_06 | AC | 71 ms
14,720 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 97 ms
22,784 KB |
testcase_09 | AC | 88 ms
18,688 KB |
testcase_10 | AC | 16 ms
7,040 KB |
testcase_11 | AC | 32 ms
12,672 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 38 ms
11,136 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 39 ms
18,048 KB |
testcase_16 | AC | 39 ms
9,472 KB |
testcase_17 | AC | 47 ms
11,136 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 96 ms
17,664 KB |
testcase_20 | AC | 12 ms
5,376 KB |
testcase_21 | AC | 122 ms
21,044 KB |
testcase_22 | AC | 71 ms
19,840 KB |
testcase_23 | AC | 46 ms
12,416 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | AC | 13 ms
7,552 KB |
testcase_26 | AC | 49 ms
18,816 KB |
testcase_27 | AC | 50 ms
11,520 KB |
testcase_28 | AC | 134 ms
26,496 KB |
testcase_29 | AC | 37 ms
14,208 KB |
testcase_30 | AC | 41 ms
13,696 KB |
testcase_31 | AC | 12 ms
7,680 KB |
testcase_32 | AC | 70 ms
17,536 KB |
testcase_33 | AC | 62 ms
20,224 KB |
testcase_34 | AC | 6 ms
5,376 KB |
testcase_35 | AC | 17 ms
7,680 KB |
testcase_36 | AC | 261 ms
34,816 KB |
testcase_37 | AC | 43 ms
27,008 KB |
ソースコード
#include <bits/stdc++.h> using ll = long long; using std::cin; using std::cout; using std::endl; std::mt19937 rnd(std::chrono::steady_clock::now().time_since_epoch().count()); template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } const int inf = (int)1e9 + 7; const long long INF = 1LL << 60; void solve([[maybe_unused]] int CASE) { int n, m, q; cin >> n >> m >> q; std::vector<std::pair<int, int>> vp(q); std::vector<std::vector<int>> mat(n, std::vector<int>(m)); for (int i = 0; i < q; ++i) { cin >> vp[i].first >> vp[i].second; vp[i].first -= 1, vp[i].second -= 1; mat[vp[i].first][vp[i].second] = 1; } std::vector dp(4, std::vector(n, std::vector<int>(m))); if (mat[0][0]) dp[3][0][0] = 1; for (int i = 0; i < n; ++i) { for (int j = 0; j < m; ++j) { if (i + 1 < n) { for (int S = 0; S < 4; ++S) { int nS = S; if (S >> 1 & 1) nS -= (1 << 1); chmax(dp[nS][i + 1][j], dp[S][i][j]); if (mat[i + 1][j] and nS == 0) { chmax(dp[3][i + 1][j], dp[S][i][j] + 1); } } } if (j + 1 < m) { for (int S = 0; S < 4; ++S) { int nS = S; if (S & 1) nS -= 1; chmax(dp[nS][i][j + 1], dp[S][i][j]); if (mat[i][j + 1] and nS == 0) { chmax(dp[3][i][j + 1], dp[S][i][j] + 1); } } } } } // for (int i = 0; i < n; ++i) // { // for (int j = 0; j < m; ++j) // { // cout << dp[3][i][j] << " \n"[j + 1 == m]; // } // } int res = 0; for (int i = 0; i < 4; ++i) chmax(res, dp[i][n - 1][m - 1]); cout << res << endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int kkt = 1; // cin >> kkt; for (int jupi = 1; jupi <= kkt; jupi++) solve(jupi); return 0; }