結果

問題 No.1703 Much Matching
ユーザー abc3abc3
提出日時 2021-10-12 21:28:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 205,160 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-17 08:48:12
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 7 ms
7,552 KB
testcase_06 AC 47 ms
6,400 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 62 ms
8,960 KB
testcase_09 AC 61 ms
7,424 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 17 ms
6,144 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 25 ms
5,504 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 17 ms
7,936 KB
testcase_16 AC 30 ms
5,376 KB
testcase_17 AC 35 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 70 ms
6,912 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 90 ms
7,808 KB
testcase_22 AC 40 ms
8,192 KB
testcase_23 AC 28 ms
5,888 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 24 ms
8,064 KB
testcase_27 AC 38 ms
5,376 KB
testcase_28 AC 88 ms
9,856 KB
testcase_29 AC 18 ms
6,656 KB
testcase_30 AC 25 ms
6,400 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 46 ms
7,424 KB
testcase_33 AC 32 ms
8,576 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 10 ms
5,376 KB
testcase_36 AC 198 ms
11,136 KB
testcase_37 AC 10 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    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; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    typedef long double ld;
    typedef unsigned long long ull;
    using P=pair<ll,ll>;
    const ll INF=1e18;
    const int mod=1e9+7;
    
    void solve(){
        int n,m,q;
        cin>>n>>m>>q;
        vector<vector<int>>t(n+1,vector<int>(m+1));
        rep(i,q){
            int a,b;
            cin>>a>>b;
            t[a][b]=1;
        }
        vector<vector<int>>dp(n+1,vector<int>(m+1));
        for(int i=1;i<=n;i++){
            for(int j=1;j<=m;j++){
                if(t[i][j]){
                    chmax(dp[i][j],dp[i-1][j-1]+1);
                }
                else{
                    chmax(dp[i][j],max(dp[i-1][j],dp[i][j-1]));
                }
            }
        }
        cout<<dp[n][m]<<endl;
    } 
    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();  

        return 0;
    }
0