結果

問題 No.1703 Much Matching
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-03 16:08:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,767 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 1,250 ms
コンパイル使用メモリ 118,188 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-06-09 03:39:32
合計ジャッジ時間 10,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 10 ms
5,760 KB
testcase_06 AC 375 ms
17,664 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 454 ms
19,584 KB
testcase_09 AC 483 ms
21,120 KB
testcase_10 AC 45 ms
6,144 KB
testcase_11 AC 78 ms
8,192 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 138 ms
10,624 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 72 ms
8,576 KB
testcase_16 AC 209 ms
12,416 KB
testcase_17 AC 263 ms
14,336 KB
testcase_18 AC 5 ms
6,948 KB
testcase_19 AC 639 ms
25,728 KB
testcase_20 AC 46 ms
6,940 KB
testcase_21 AC 817 ms
29,824 KB
testcase_22 AC 273 ms
15,104 KB
testcase_23 AC 184 ms
11,648 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 20 ms
6,940 KB
testcase_26 AC 120 ms
10,368 KB
testcase_27 AC 255 ms
14,976 KB
testcase_28 AC 618 ms
26,368 KB
testcase_29 AC 78 ms
8,704 KB
testcase_30 AC 116 ms
10,368 KB
testcase_31 AC 14 ms
6,944 KB
testcase_32 AC 316 ms
16,000 KB
testcase_33 AC 193 ms
12,928 KB
testcase_34 AC 13 ms
6,940 KB
testcase_35 AC 39 ms
6,940 KB
testcase_36 AC 1,767 ms
54,144 KB
testcase_37 AC 20 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, M, Q, a, b;
    cin >> N >> M >> Q;
    set<pair<int, int>> st;
    for (int i=0; i<Q; i++){
        cin >> a >> b;
        st.insert({a, b});
    }

    vector<vector<int>> dp(N+1, vector<int>(M+1));

    for (int i=1; i<=N; i++){
        for (int j=1; j<=M; j++){
            dp[i][j] = max(dp[i-1][j], dp[i][j-1]);
            if (st.count({i, j})) dp[i][j] = max(dp[i][j], dp[i-1][j-1]+1);
        }
    }

    cout << dp[N][M] << endl;

    return 0;
}
0