結果

問題 No.1703 Much Matching
ユーザー umezoumezo
提出日時 2021-10-08 23:07:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,613 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 2,801 ms
コンパイル使用メモリ 209,820 KB
実行使用メモリ 81,460 KB
最終ジャッジ日時 2024-07-23 06:37:32
合計ジャッジ時間 13,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 92 ms
24,160 KB
testcase_04 AC 54 ms
18,444 KB
testcase_05 AC 178 ms
43,440 KB
testcase_06 AC 352 ms
33,576 KB
testcase_07 AC 18 ms
9,088 KB
testcase_08 AC 448 ms
57,216 KB
testcase_09 AC 448 ms
45,660 KB
testcase_10 AC 62 ms
14,208 KB
testcase_11 AC 143 ms
33,636 KB
testcase_12 AC 27 ms
9,088 KB
testcase_13 AC 161 ms
28,088 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 192 ms
47,376 KB
testcase_16 AC 191 ms
21,020 KB
testcase_17 AC 238 ms
26,908 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 571 ms
42,592 KB
testcase_20 AC 38 ms
7,552 KB
testcase_21 AC 711 ms
50,860 KB
testcase_22 AC 328 ms
49,928 KB
testcase_23 AC 200 ms
31,712 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 57 ms
16,960 KB
testcase_26 AC 248 ms
48,348 KB
testcase_27 AC 265 ms
29,344 KB
testcase_28 AC 649 ms
66,604 KB
testcase_29 AC 165 ms
35,868 KB
testcase_30 AC 186 ms
33,724 KB
testcase_31 AC 58 ms
18,688 KB
testcase_32 AC 332 ms
42,980 KB
testcase_33 AC 292 ms
52,684 KB
testcase_34 AC 20 ms
7,680 KB
testcase_35 AC 64 ms
17,988 KB
testcase_36 AC 1,613 ms
81,460 KB
testcase_37 AC 283 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll dp[1010][1010];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,m,q;
  cin>>n>>m>>q;
  vector<int> A(q),B(q);
  rep(i,q){
    cin>>A[i]>>B[i];
  }
  map<pair<int,int>,int> M;
  rep(i,q) M[{A[i],B[i]}]=1;
  
  for(int i=1;i<=n;i++){
    for(int j=1;j<=m;j++){
      if(M[{i,j}]==0) dp[i][j]=max(dp[i][j-1],dp[i-1][j]);
      else dp[i][j]=dp[i-1][j-1]+1;
    }
  }
  cout<<dp[n][m]<<endl;
  
  return 0;
}
0