結果

問題 No.2667 Constrained Permutation
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-08 22:54:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 210,672 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-09-29 20:22:41
合計ジャッジ時間 8,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 67 ms
9,600 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 228 ms
20,992 KB
testcase_15 AC 182 ms
17,920 KB
testcase_16 AC 117 ms
13,696 KB
testcase_17 AC 33 ms
6,816 KB
testcase_18 AC 253 ms
22,144 KB
testcase_19 AC 256 ms
22,272 KB
testcase_20 AC 268 ms
22,144 KB
testcase_21 AC 247 ms
22,144 KB
testcase_22 AC 245 ms
22,144 KB
testcase_23 AC 247 ms
22,272 KB
testcase_24 AC 90 ms
11,520 KB
testcase_25 AC 194 ms
18,816 KB
testcase_26 AC 260 ms
22,144 KB
testcase_27 AC 252 ms
22,144 KB
testcase_28 AC 174 ms
17,408 KB
testcase_29 AC 162 ms
16,768 KB
testcase_30 AC 181 ms
18,304 KB
testcase_31 AC 103 ms
12,416 KB
testcase_32 AC 18 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 112 ms
13,184 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 166 ms
17,280 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 110 ms
13,184 KB
testcase_41 AC 195 ms
19,072 KB
testcase_42 AC 95 ms
13,952 KB
testcase_43 AC 144 ms
18,304 KB
testcase_44 AC 54 ms
9,600 KB
testcase_45 AC 4 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    map<int,int> L;
    map<int,int,greater<>> R;
    for(int i=0; i<N; i++){
        int l,r; cin >> l >> r;
        L[l-N]++; R[r-1]++;
    }

    int maxl = -1e9,minr = 2e9;
    for(auto [k,v] : L){
        if(v >= 2) L[k+1] += v-1;
        if(v) maxl = max(maxl,k);
    }
    for(auto [k,v] : R){
        if(v >= 2) R[k-1] += v-1;
        if(v) minr = min(minr,k);
    }

    cout << max(0,minr-maxl+1) << endl;
}
0