結果

問題 No.1703 Much Matching
ユーザー SSRSSSRS
提出日時 2021-10-08 21:59:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 174,996 KB
実行使用メモリ 23,396 KB
最終ジャッジ日時 2024-07-23 04:10:19
合計ジャッジ時間 6,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 139 ms
9,416 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 147 ms
9,504 KB
testcase_09 AC 172 ms
10,260 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 37 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 66 ms
6,020 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 90 ms
7,624 KB
testcase_17 AC 106 ms
7,732 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 230 ms
13,216 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 272 ms
15,636 KB
testcase_22 AC 103 ms
7,948 KB
testcase_23 AC 78 ms
6,792 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 51 ms
5,540 KB
testcase_27 AC 115 ms
7,920 KB
testcase_28 AC 218 ms
12,044 KB
testcase_29 AC 40 ms
5,376 KB
testcase_30 AC 60 ms
5,788 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 116 ms
8,012 KB
testcase_33 AC 77 ms
6,444 KB
testcase_34 AC 8 ms
5,376 KB
testcase_35 AC 21 ms
5,376 KB
testcase_36 AC 513 ms
23,396 KB
testcase_37 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 10000;
int main(){
  int N, M, Q;
  cin >> N >> M >> Q;
  vector<int> a(Q), b(Q);
  for (int i = 0; i < Q; i++){
    cin >> a[i] >> b[i];
    a[i]--;
    b[i]--;
  }
  vector<vector<int>> b2(N);
  for (int i = 0; i < Q; i++){
    b2[a[i]].push_back(b[i]);
  }
  for (int i = 0; i < N; i++){
    sort(b2[i].begin(), b2[i].end(), greater<int>());
  }
  vector<int> x;
  for (int i = 0; i < N; i++){
    int cnt = b2[i].size();
    for (int j = 0; j < cnt; j++){
      x.push_back(b2[i][j]);
    }
  }
  vector<int> dp(Q, INF);
  for (int i = 0; i < Q; i++){
    *lower_bound(dp.begin(), dp.end(), x[i]) = x[i];
  }
  cout << lower_bound(dp.begin(), dp.end(), INF) - dp.begin() << endl;
}
0