結果

問題 No.1703 Much Matching
コンテスト
ユーザー abc3
提出日時 2021-10-08 23:31:38
言語 C++17
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,272 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,150 ms
コンパイル使用メモリ 217,024 KB
実行使用メモリ 11,236 KB
最終ジャッジ日時 2026-06-23 08:55:34
合計ジャッジ時間 38,635 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 WA * 6 RE * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

    #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;
    }
0