結果

問題 No.1703 Much Matching
ユーザー ぷらぷら
提出日時 2021-10-08 22:13:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 1,304 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 217,752 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-07-23 04:40:07
合計ジャッジ時間 7,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 166 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 179 ms
6,944 KB
testcase_09 AC 205 ms
6,940 KB
testcase_10 AC 28 ms
6,944 KB
testcase_11 AC 44 ms
6,944 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 77 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 37 ms
6,940 KB
testcase_16 AC 107 ms
6,944 KB
testcase_17 AC 124 ms
6,944 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 270 ms
6,944 KB
testcase_20 AC 32 ms
6,944 KB
testcase_21 AC 324 ms
7,680 KB
testcase_22 AC 124 ms
6,940 KB
testcase_23 AC 91 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 13 ms
6,944 KB
testcase_26 AC 61 ms
6,940 KB
testcase_27 AC 135 ms
6,940 KB
testcase_28 AC 263 ms
6,940 KB
testcase_29 AC 48 ms
6,940 KB
testcase_30 AC 71 ms
6,940 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 138 ms
6,940 KB
testcase_33 AC 92 ms
6,944 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 24 ms
6,940 KB
testcase_36 AC 632 ms
7,936 KB
testcase_37 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int inf = 1001001001;

template <typename T>
struct SegmentTree {
    int n;
    vector<T> dat;
    SegmentTree() {}
    SegmentTree(int N) {
        n = 1;
        while(n < N) {
            n *= 2;
        }
        dat.resize(2*n-1,-inf);
    }
    void update(int x, T val) {
        x += (n-1);
        dat[x] = val;
        while(x > 0) {
            x = (x-1)/2;
            dat[x] = max(dat[2*x+1],dat[2*x+2]);
        }
    }
    T query(int a, int b, int k, int l, int r) {
        if(r <= a || b <= l) return -inf;
        if(a <= l && r <= b) return dat[k];
        T vl = query(a, b, 2*k+1, l, (l+r)/2);
        T vr = query(a, b, 2*k+2, (l+r)/2, r);
        return max(vl, vr);
    }
    T query(int a,int b) {//[a,b)
        return query(a,b,0,0,n);
    }
};

int main() {
    int N,M,Q;
    cin >> N >> M >> Q;
    map<int,vector<int>>tmp;
    for(int i = 0; i < Q; i++) {
        int a,b;
        cin >> a >> b;
        tmp[a].push_back(b);
    }
    SegmentTree<int>Seg(M+1);
    Seg.update(0,0);
    for(auto x:tmp) {
        sort(x.second.rbegin(),x.second.rend());
        for(int i = 0; i < x.second.size(); i++) {
            Seg.update(x.second[i],Seg.query(0,x.second[i])+1);
        }
    }
    cout << Seg.query(0,M+1) << endl;
}
0