結果
問題 | No.1703 Much Matching |
ユーザー | umezo |
提出日時 | 2021-10-08 23:07:19 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,639 ms / 2,000 ms |
コード長 | 587 bytes |
コンパイル時間 | 3,124 ms |
コンパイル使用メモリ | 200,528 KB |
最終ジャッジ日時 | 2025-01-24 23:16:24 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 35 |
ソースコード
#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; }