結果

問題 No.2667 Constrained Permutation
ユーザー みここみここ
提出日時 2024-03-08 21:49:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 81,356 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 19:29:29
合計ジャッジ時間 7,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 66 ms
6,816 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 180 ms
6,816 KB
testcase_15 AC 144 ms
6,816 KB
testcase_16 AC 100 ms
6,816 KB
testcase_17 AC 33 ms
6,820 KB
testcase_18 AC 193 ms
6,820 KB
testcase_19 AC 194 ms
6,820 KB
testcase_20 AC 197 ms
6,820 KB
testcase_21 AC 184 ms
6,820 KB
testcase_22 AC 183 ms
6,816 KB
testcase_23 AC 185 ms
6,816 KB
testcase_24 AC 80 ms
6,820 KB
testcase_25 AC 152 ms
6,820 KB
testcase_26 AC 192 ms
6,820 KB
testcase_27 AC 184 ms
6,816 KB
testcase_28 AC 136 ms
6,820 KB
testcase_29 AC 129 ms
6,816 KB
testcase_30 AC 145 ms
6,816 KB
testcase_31 AC 90 ms
6,820 KB
testcase_32 AC 21 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 96 ms
6,816 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 140 ms
6,816 KB
testcase_39 AC 5 ms
6,816 KB
testcase_40 AC 100 ms
6,816 KB
testcase_41 AC 157 ms
6,820 KB
testcase_42 AC 108 ms
6,820 KB
testcase_43 AC 151 ms
6,816 KB
testcase_44 AC 68 ms
6,820 KB
testcase_45 AC 5 ms
6,820 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));
    }
    for (int i = 0; i < n; i++)
    {
        swap(p[i].first, p[i].second);
    }
    int r = 2000000000;
    sort(p, p + n);
    for (int i = 0; i < n; i++)
    {
        r = min(r, p[i].first - (i + 1));
    }
    cout << max(0, r - l + 1) << endl;
}
0