結果
問題 | No.2796 Small Matryoshka |
ユーザー | 沙耶花 |
提出日時 | 2024-06-28 21:26:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 913 bytes |
コンパイル時間 | 4,654 ms |
コンパイル使用メモリ | 265,596 KB |
実行使用メモリ | 20,932 KB |
最終ジャッジ日時 | 2024-06-28 21:26:24 |
合計ジャッジ時間 | 7,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 42 ms
6,144 KB |
testcase_06 | AC | 261 ms
20,932 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 191 ms
13,296 KB |
testcase_09 | AC | 236 ms
15,156 KB |
testcase_10 | AC | 263 ms
19,168 KB |
testcase_11 | AC | 289 ms
19,784 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 int main(){ int n; cin>>n; vector<int> a(n),b(n); vector<int> t; rep(i,n){ cin>>a[i]>>b[i]; t.push_back(a[i]); t.push_back(b[i]); } sort(t.begin(),t.end()); t.erase(unique(t.begin(),t.end()),t.end()); vector<vector<int>> E(t.size()); rep(i,n){ a[i]=lower_bound(t.begin(),t.end(),a[i])-t.begin(); b[i]=lower_bound(t.begin(),t.end(),b[i])-t.begin(); E[a[i]].push_back(b[i]); } vector<int> dp(t.size(),0); rep(i,t.size()){ rep(j,E[i].size()){ dp[E[i][j]] = max(dp[E[i][j]],dp[i]+1); } if(i!=t.size()-1)dp[i+1] = max(dp[i+1],dp[i]); } int ans =0; rep(i,t.size()){ ans = max(ans,dp[i]); } cout<<n-ans<<endl; return 0; }