結果

問題 No.2667 Constrained Permutation
ユーザー kurehakureha
提出日時 2024-04-13 17:30:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,386 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 209,836 KB
実行使用メモリ 12,924 KB
最終ジャッジ日時 2024-10-03 00:18:09
合計ジャッジ時間 7,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 29 ms
7,524 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 75 ms
12,456 KB
testcase_15 AC 64 ms
11,956 KB
testcase_16 AC 48 ms
8,420 KB
testcase_17 AC 15 ms
5,604 KB
testcase_18 AC 83 ms
12,800 KB
testcase_19 AC 84 ms
12,924 KB
testcase_20 AC 83 ms
12,800 KB
testcase_21 AC 81 ms
12,848 KB
testcase_22 AC 82 ms
12,792 KB
testcase_23 AC 82 ms
12,792 KB
testcase_24 AC 34 ms
7,944 KB
testcase_25 AC 65 ms
12,100 KB
testcase_26 AC 79 ms
12,800 KB
testcase_27 AC 81 ms
12,792 KB
testcase_28 AC 62 ms
12,004 KB
testcase_29 AC 57 ms
11,752 KB
testcase_30 AC 65 ms
12,044 KB
testcase_31 AC 41 ms
8,120 KB
testcase_32 AC 10 ms
5,248 KB
testcase_33 WA -
testcase_34 AC 43 ms
8,368 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 62 ms
11,856 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 43 ms
8,352 KB
testcase_41 AC 72 ms
12,140 KB
testcase_42 AC 48 ms
8,732 KB
testcase_43 AC 69 ms
12,028 KB
testcase_44 AC 29 ms
7,528 KB
testcase_45 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
template<class T> using V = vector<T>;
template<class T> using VV = V<V<T>>;
template<class T> using VVV = V<VV<T>>;
template<class T> using VVVV = VV<VV<T>>;
#define rep(i,n) for(ll i=0ll;i<n;i++)
#define REP(i,a,n) for(ll i=a;i<n;i++)
const long long INF = (1LL << 60);
const long long mod99 = 998244353;
const long long mod107 = 1000000007;
const long long mod = mod99;
#define eb emplace_back
#define pb eb
#define be(v) (v).begin(),(v).end()
#define all(i,v) for(auto& i : v)
#define all2(i,j,v) for(auto& [i,j] : v)
template<class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; }
template<class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; }

// cin.tie(nullptr);
// ios::sync_with_stdio(false);
// cout << fixed << setprecision(20);

void solve(){
  ll n;
  cin >> n;
  V<ll> l(n), r(n);
  rep(i, n){
    cin >> l[i] >> r[i];
    l[i]--;
  }
  V<pair<ll,ll>> v,w;
  rep(i, n){
    v.eb(l[i], r[i]);
    w.eb(r[i], l[i]);
  }
  sort(be(v));
  sort(be(w));
  ll L = 0, R=INF;
  rep(i, n){
    auto[x,y] = v[i];
    chmax(L, x-i);
    auto[p,q] = w[i];
    chmin(R, p-i);
  }
  cout << max(0ll, R-L) << endl;
}





int main(){
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int t=1;
  // cin >> t;
  rep(i,t) solve();
}
0