結果

問題 No.2667 Constrained Permutation
ユーザー みここみここ
提出日時 2024-03-08 22:03:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 85,260 KB
実行使用メモリ 8,424 KB
最終ジャッジ日時 2024-09-29 19:39:34
合計ジャッジ時間 9,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 134 ms
6,372 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 368 ms
8,292 KB
testcase_15 AC 162 ms
8,084 KB
testcase_16 AC 112 ms
6,756 KB
testcase_17 AC 37 ms
5,608 KB
testcase_18 AC 462 ms
8,416 KB
testcase_19 AC 327 ms
8,420 KB
testcase_20 AC 374 ms
8,420 KB
testcase_21 AC 200 ms
8,424 KB
testcase_22 AC 204 ms
8,420 KB
testcase_23 AC 198 ms
8,420 KB
testcase_24 AC 234 ms
6,632 KB
testcase_25 AC 446 ms
8,164 KB
testcase_26 AC 471 ms
8,420 KB
testcase_27 AC 474 ms
8,416 KB
testcase_28 AC 180 ms
8,040 KB
testcase_29 AC 174 ms
7,908 KB
testcase_30 AC 190 ms
8,036 KB
testcase_31 AC 113 ms
6,628 KB
testcase_32 AC 25 ms
5,248 KB
testcase_33 AC 193 ms
8,296 KB
testcase_34 AC 106 ms
6,632 KB
testcase_35 AC 124 ms
6,820 KB
testcase_36 AC 116 ms
6,884 KB
testcase_37 AC 134 ms
7,008 KB
testcase_38 AC 161 ms
8,032 KB
testcase_39 AC 5 ms
5,248 KB
testcase_40 AC 103 ms
6,628 KB
testcase_41 AC 166 ms
8,164 KB
testcase_42 AC 240 ms
6,628 KB
testcase_43 AC 251 ms
8,036 KB
testcase_44 AC 184 ms
6,500 KB
testcase_45 AC 7 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <queue>
using namespace std;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n;
    cin >> n;
    P p[200005];
    for (int i = 0; i < n; i++)
    {
        cin >> p[i].first >> p[i].second;
    }
    int l = 0;
    sort(p, p + n);
    for (int i = 0; i < n; i++)
    {
        l = max(l, p[i].first - (i + 1));
    }
    ll ok = l - 1, ng = 2000000000;
    while (abs(ok - ng) > 1)
    {
        ll k = (ok + ng) / 2;
        int j = 0;
        priority_queue<ll, vector<ll>, greater<ll>> que;
        bool f = true;
        for (int i = 1; i <= n; i++)
        {
            while (j < n && p[j].first <= i + k)
            {
                que.push(p[j++].second);
            }
            if (!que.size() || que.top() < i + k)
            {
                f = false;
                break;
            }
            que.pop();
        }
        if (f)
        {
            ok = k;
        }
        else
        {
            ng = k;
        }
    }
    cout << ok - l + 1 << endl;
}
0