結果

問題 No.1703 Much Matching
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:37:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 100,052 KB
実行使用メモリ 12,500 KB
最終ジャッジ日時 2024-11-15 01:48:23
合計ジャッジ時間 5,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 167 ms
8,912 KB
testcase_07 AC 10 ms
6,816 KB
testcase_08 AC 177 ms
7,632 KB
testcase_09 AC 202 ms
8,528 KB
testcase_10 AC 28 ms
6,820 KB
testcase_11 AC 43 ms
6,816 KB
testcase_12 AC 9 ms
6,820 KB
testcase_13 AC 77 ms
6,816 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 36 ms
6,816 KB
testcase_16 AC 108 ms
6,816 KB
testcase_17 AC 123 ms
6,820 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 267 ms
8,400 KB
testcase_20 AC 32 ms
6,816 KB
testcase_21 AC 317 ms
7,628 KB
testcase_22 AC 122 ms
6,816 KB
testcase_23 AC 90 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 12 ms
6,816 KB
testcase_26 AC 58 ms
6,816 KB
testcase_27 AC 132 ms
6,816 KB
testcase_28 AC 256 ms
8,532 KB
testcase_29 AC 47 ms
6,816 KB
testcase_30 AC 71 ms
6,820 KB
testcase_31 AC 8 ms
6,820 KB
testcase_32 AC 138 ms
6,816 KB
testcase_33 AC 90 ms
6,816 KB
testcase_34 AC 9 ms
6,816 KB
testcase_35 AC 24 ms
6,816 KB
testcase_36 AC 619 ms
12,500 KB
testcase_37 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<atcoder/segtree>

#define fi first
#define se second

using namespace std;
using namespace atcoder;
using P = pair<int, int>;

int op(int x, int y) { return max(x, y);}
int e() { return -1;}

int main(){
  int N, M, Q; cin >> N >> M >> Q;
  vector<P> AB;
  for(int i=0; i<Q; ++i){
    int a, b; cin >> a >> b;
    AB.emplace_back(make_pair(a, b));
  }
  sort(AB.begin(), AB.end(), [](auto x, auto y){
    if(x.fi < y.fi) return true;
    if(x.fi > y.fi) return false;
    return x.se > y.se;
  });
  
  segtree<int, op, e> seg(max(N, M) + 1);
  vector<int> dp(max(N, M) + 1, -1);
  dp[0] = 0;
  seg.set(0, 0);
  
  for(auto& p: AB){
    int a, b; tie(a, b) = p;
    int x = seg.prod(0, b) + 1;
    dp[b] = x;
    seg.set(b, x);
  }
  
  int ANS = seg.all_prod();
  cout << ANS << endl;
  return 0;
}
0