結果
問題 | No.1703 Much Matching |
ユーザー | Kude |
提出日時 | 2021-10-08 23:39:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,550 bytes |
コンパイル時間 | 5,025 ms |
コンパイル使用メモリ | 263,116 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-23 07:58:49 |
合計ジャッジ時間 | 6,793 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 4 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, q; cin >> n >> m >> q; VI cnt1(n), cnt2(m); VI to1(n, -1), to2(m, -1); rep(_, q) { int a, b; cin >> a >> b; cnt1[a - 1]++; cnt2[b - 1]++; to1[a - 1] = b - 1; to2[b - 1] = a - 1; } constexpr int INF = 1001001001; VI dp(m + 1, -INF); dp[0] = 0; rep(i, n) { VI ndp(m + 1, -INF); if (cnt1[i] == 1 && cnt2[to1[i]] == 1) { int x = -INF; rep(j, to1[i] + 1) chmax(x, dp[j]); chmax(ndp[to1[i] + 1], x + 1); } if (cnt1[i] == 0) { int x = -INF; rep(j, m) chmax(x, dp[j]), chmax(ndp[j + 1], x + 1); } else { int x = -INF; rep(j, m) if (cnt2[j] == 0) chmax(x, dp[j]), chmax(ndp[j + 1], x + 1); } rep(i, m + 1) chmax(ndp[i], dp[i]); dp = ndp; } int ans = *max_element(all(dp)); cout << ans << endl; }