結果

問題 No.2667 Constrained Permutation
ユーザー inksamuraiinksamurai
提出日時 2024-03-10 18:41:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,366 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 212,300 KB
実行使用メモリ 17,320 KB
最終ジャッジ日時 2024-09-29 21:45:06
合計ジャッジ時間 8,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 68 ms
7,500 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 214 ms
16,420 KB
testcase_15 AC 120 ms
12,492 KB
testcase_16 AC 96 ms
9,728 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 266 ms
17,148 KB
testcase_19 AC 304 ms
15,452 KB
testcase_20 AC 298 ms
16,472 KB
testcase_21 AC 148 ms
15,388 KB
testcase_22 AC 180 ms
15,232 KB
testcase_23 AC 178 ms
15,360 KB
testcase_24 AC 85 ms
9,512 KB
testcase_25 AC 181 ms
15,216 KB
testcase_26 AC 228 ms
17,312 KB
testcase_27 AC 196 ms
17,320 KB
testcase_28 AC 52 ms
9,088 KB
testcase_29 AC 48 ms
8,576 KB
testcase_30 AC 54 ms
9,472 KB
testcase_31 AC 34 ms
6,912 KB
testcase_32 AC 9 ms
5,248 KB
testcase_33 AC 86 ms
14,720 KB
testcase_34 AC 45 ms
9,472 KB
testcase_35 AC 54 ms
10,624 KB
testcase_36 AC 52 ms
10,112 KB
testcase_37 AC 57 ms
11,008 KB
testcase_38 AC 181 ms
11,844 KB
testcase_39 AC 5 ms
5,248 KB
testcase_40 AC 43 ms
9,216 KB
testcase_41 AC 68 ms
12,672 KB
testcase_42 AC 108 ms
10,304 KB
testcase_43 AC 168 ms
13,852 KB
testcase_44 AC 168 ms
8,012 KB
testcase_45 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int ll
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define rng(i,c,n) for(int i=c;i<n;i++)
#define fi first
#define se second
#define pb push_back
#define all(a) a.begin(), a.end()
#define sz(a) ((int) a.size())
#define vec(...) vector<__VA_ARGS__>
#define _3TpP2FO ios::sync_with_stdio(0),cin.tie(0);
typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int> pii;
void print(){cout<<'\n';}
template<class h,class...t>
void print(const h&v,const t&...u){cout<<v<<' ',print(u...);}

const int inf=1e9;

void slv(){
	int n;
	cin>>n;

	vec(pii) a(n);
	rep(i,n){
		cin>>a[i].fi>>a[i].se;
	}
	sort(all(a));

	int lk=-inf;
	rep(i,n){
		auto [l,r]=a[i];
		// l - i - 1 <= k
		lk=max(lk,l-i-1);
	}
	//print(lk);

	auto f=[&](int k)->int{
		vec(vi) adqry(n+1);
		rep(i,n){
			auto [l,r]=a[i];
			l-=k,r-=k;
			l=max(l,1ll);
			r=min(r,n);
			if(l>r) return 0;
			adqry[l].pb(r);
		}
		priority_queue<int,vec(int),greater<int>> pq;
		rng(l,1,n+1){
			for(auto r:adqry[l]) pq.push(r);
			while(sz(pq) and pq.top()<l) pq.pop();
			if(!sz(pq)) return 0;
			pq.pop();
		}
		return 1;
	};
	if(!f(lk)){
		print(0);
		return;
	}

	int l=lk,r=inf;
	int rk=lk;
	while(l<=r){
		int m=(l+r)/2;
		if(f(m)) rk=m,l=m+1;
		else r=m-1;
	}
	print(rk-lk+1);
}

signed main(){
_3TpP2FO;
	slv();
}
0