結果

問題 No.2796 Small Matryoshka
ユーザー kentikenti
提出日時 2024-06-28 21:56:24
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 94,856 KB
実行使用メモリ 14,948 KB
最終ジャッジ日時 2024-06-28 21:56:30
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 27 ms
5,376 KB
testcase_06 AC 153 ms
6,952 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 119 ms
6,580 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <utility>
using namespace std;
typedef pair<int, int> P;

const int MAX_N = 200000;
int N;
P r[MAX_N];

int main() {
    cin >> N;
    for (int i = 0; i < N; i++)
        cin >> r[i].second >> r[i].first;
    int ans = -1, tmp = 0;
    priority_queue<P, vector<P>, greater<P>> que1, que2;
    for (int i = 0; i < N; i++)
        que1.push(r[i]);
    while (!que1.empty()) {
        P mat = que1.top(); que1.pop();
        if (mat.second >= tmp) {
            tmp = mat.first;
        } else
            que2.push(mat);
        if (que1.empty()) {
            swap(que1, que2);
            ans++;
            tmp = 0;
        }
    }
    cout << ans << endl;
    return 0;
}
0