結果
問題 | No.1703 Much Matching |
ユーザー | goteten |
提出日時 | 2021-10-08 22:55:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 676 bytes |
コンパイル時間 | 1,641 ms |
コンパイル使用メモリ | 169,028 KB |
実行使用メモリ | 14,664 KB |
最終ジャッジ日時 | 2024-07-23 06:06:52 |
合計ジャッジ時間 | 5,636 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() const int mod = 1000000007; const long long INF = 1LL << 60; using ll = long long; int main() { ll N,M,Q; cin >> N >> M >> Q; vector<int> a(Q+1,0),b(Q+1,0); rep(i,Q){ cin >> a[i+1] >> b[i+1]; } //何番目まで考えるか,最後に選んだペア vector<int> dp(Q+10,0); int ans=0; rep(i,Q+1)if(i){ vector<int> dp_=dp; rep(j,i+1){ dp[j]=dp_[j]; rep(k,j+1)if(k<=i-1){ if(a[j]>a[k]&&b[j]>b[k]) dp[j]=max(dp[j],dp_[k]+1); } ans=max(ans,dp[j]); } } cout << ans << endl; }