結果
問題 | No.2796 Small Matryoshka |
ユーザー | lingfunny |
提出日時 | 2024-06-28 21:39:36 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 2,929 ms |
コンパイル使用メモリ | 247,632 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 21:39:46 |
合計ジャッジ時間 | 4,014 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 10 ms
5,376 KB |
testcase_06 | AC | 56 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 45 ms
5,376 KB |
testcase_09 | AC | 66 ms
5,376 KB |
testcase_10 | AC | 66 ms
5,376 KB |
testcase_11 | AC | 66 ms
5,376 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> using namespace std; using LL = long long; const int mxn = 2e5 + 10; int n; struct node { int R, r; } a[mxn]; int main() { ios::sync_with_stdio(false); cin >> n; for (int i = 1; i <= n; ++i) cin >> a[i].r >> a[i].R; sort(a + 1, a + n + 1, [&](const node &lhs, const node &rhs) { return lhs.R == rhs.R ? lhs.r > rhs.r : lhs.R > rhs.R; }); int lstr = a[1].r, ans = 0; for (int i = 2; i <= n; ++i) { if (a[i].R > lstr) { ++ans; lstr = max(lstr, a[i].r); } else { lstr = a[i].r; } } cout << ans << "\n"; return 0; }