結果
| 問題 | No.1703 Much Matching |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-08 23:31:38 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,272 bytes |
| 記録 | |
| コンパイル時間 | 2,300 ms |
| コンパイル使用メモリ | 196,296 KB |
| 最終ジャッジ日時 | 2025-01-24 23:29:26 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 WA * 6 RE * 5 TLE * 23 |
ソースコード
#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<int,int>;
const int INF=1001001001;
const int mod=1e9+7;
void solve(){
int n,m,q;
cin>>n>>m>>q;
vector<P>p(q+1);
for(int i=1;i<=q;i++)cin>>p[i].first>>p[i].second;
vector<int>dp(n+1,-INF);
dp[0]=0;
for(int i=1;i<=q;i++){
for(int j=i-1;j>=0;j--){
if(dp[j] != -INF && p[j].second < p[i].second && p[j].first < p[i].first){
chmax(dp[i],dp[j]+1);
}
}
}
int ans=0;
rep(i,q+1){
chmax(ans,dp[i]);
}
cout<<ans<<endl;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
return 0;
}