結果
問題 | No.1703 Much Matching |
ユーザー | yakki |
提出日時 | 2021-10-08 22:50:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 2,299 ms |
コンパイル使用メモリ | 209,200 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-07-23 05:58:31 |
合計ジャッジ時間 | 7,176 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 118 ms
6,528 KB |
testcase_18 | WA | - |
testcase_19 | AC | 253 ms
9,984 KB |
testcase_20 | WA | - |
testcase_21 | AC | 303 ms
11,264 KB |
testcase_22 | WA | - |
testcase_23 | AC | 87 ms
5,504 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 127 ms
6,784 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 599 ms
18,816 KB |
testcase_37 | AC | 3 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> //#include<atcoder/all> using namespace std; //using namespace atcoder; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 //#define MOD 1000000007 #define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1.0) const double EPS = 1e-15; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; //using mint = modint998244353; int dh[] = {-1,0,1,0}; int dw[] = {0,1,0,-1}; int main(){ int n,m,q; cin >> n >> m >> q; vector<Pi> ab(q); rep(i,q){ cin >> ab[i].first >> ab[i].second; } sort(ab.begin(),ab.end()); vector<int> c(q); rep(i,q) c[i] = ab[i].second; vector<int> dp(q,INF); rep(i,q){ *lower_bound(dp.begin(),dp.end(),c[i]) = c[i]; } cout << lower_bound(dp.begin(),dp.end(),INF)-dp.begin() <<endl; }