結果
問題 | No.2796 Small Matryoshka |
ユーザー | ponjuice |
提出日時 | 2024-06-28 22:31:21 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 878 bytes |
コンパイル時間 | 5,293 ms |
コンパイル使用メモリ | 316,088 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-06-28 22:31:31 |
合計ジャッジ時間 | 7,108 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 26 ms
5,376 KB |
testcase_06 | AC | 147 ms
6,784 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 116 ms
5,888 KB |
testcase_09 | AC | 169 ms
7,168 KB |
testcase_10 | AC | 172 ms
7,152 KB |
testcase_11 | AC | 172 ms
7,072 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<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll = long long; #define rep(i,a,b) for(ll i = a; i < b; i++) #define all(a) (a).begin(), (a).end() #define rall(a) (a).rbegin(), (a).rend() bool chmin(auto &a, auto b){if(a > b){a = b; return true;} return false;} bool chmax(auto &a, auto b){if(a < b){a = b; return true;} return false;} int main(){ int n; cin >> n; vector<array<ll,2>> p(n); rep(i,0,n){ cin >> p[i][0] >> p[i][1]; } sort(rall(p)); vector<int> mx(n, 1); rep(i,1,n){ mx[i] = mx[i-1]; int it = -1, ng = i; while(ng -it > 1){ int md = (ng + it) / 2; if(p[md][0] < p[i][1]) ng = md; else it = md; } if(it == -1) continue; chmax(mx[i], mx[it] + 1); } cout << n - mx[n-1] << endl; }