結果

問題 No.1703 Much Matching
ユーザー chocoruskchocorusk
提出日時 2021-10-08 22:47:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 3,423 ms
コンパイル使用メモリ 189,288 KB
実行使用メモリ 8,520 KB
最終ジャッジ日時 2024-07-23 05:54:09
合計ジャッジ時間 7,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
7,364 KB
testcase_05 AC 7 ms
8,264 KB
testcase_06 AC 118 ms
7,372 KB
testcase_07 AC 11 ms
8,148 KB
testcase_08 AC 128 ms
7,296 KB
testcase_09 AC 146 ms
7,424 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 35 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 59 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 30 ms
7,552 KB
testcase_16 AC 76 ms
6,944 KB
testcase_17 AC 91 ms
7,552 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 190 ms
8,136 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 222 ms
8,192 KB
testcase_22 AC 91 ms
8,136 KB
testcase_23 AC 70 ms
7,936 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 12 ms
6,940 KB
testcase_26 AC 48 ms
6,944 KB
testcase_27 AC 97 ms
8,396 KB
testcase_28 AC 188 ms
8,400 KB
testcase_29 AC 38 ms
6,944 KB
testcase_30 AC 54 ms
6,940 KB
testcase_31 AC 10 ms
7,296 KB
testcase_32 AC 101 ms
6,944 KB
testcase_33 AC 69 ms
8,264 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 21 ms
8,140 KB
testcase_36 AC 437 ms
8,448 KB
testcase_37 AC 8 ms
8,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
bool x[1010][1010];
int dp[1010][1010];
int main()
{
    int n, m, q; cin>>n>>m>>q;
    for(int i=0; i<q; i++){
        int a, b; cin>>a>>b;a--;b--;
        x[a][b]=1;
    }
    for(int i=0; i<n; i++){
        for(int j=0; j<m; j++){
            if(x[i][j]){
                int c=1;
                if(i && j) c+=dp[i-1][j-1];
                dp[i][j]=max(dp[i][j], c);
            }
            if(i)dp[i][j]=max(dp[i][j], dp[i-1][j]);
            if(j)dp[i][j]=max(dp[i][j], dp[i][j-1]);
        }
    }
    cout<<dp[n-1][m-1]<<endl;
    return 0;
}
0