Educational Codeforces Round 43(Rated for Div. 2) D. Degree set(욕심 귀속 구조)
7743 단어 기교
D. Degree Set
Stetement
You are given a sequence of n positive integers d1, d2, ..., dn(d1 < d2 < ... < dn) d 1 , d 2 , . . . , d n ( d 1 < d 2 < . . . < d n ) . Your task is to construct an undirected graph such that: there are exactly dn + 1 d n + 1 vertices; there are no self-loops; there are no multiple edges; there are no more than 106 10 6 edges; its degree set is equal to d. Vertices should be numbered 1 through dn + 1 d n + 1 . Degree sequence is an array a with length equal to the number of vertices in a graph such that ai is the number of vertices adjacent to i-th vertex. Degree set is a sorted in increasing order sequence of all distinct values from the degree sequence. It is guaranteed that there exists such a graph that all the conditions hold, and it contains no more than 106 edges. Print the resulting graph.
Input
The first line contains one integer n(1 ≤ n ≤ 300) n ( 1 ≤ n ≤ 300 ) — the size of the degree set. The second line contains n integers d1, d2, ..., dn(1 ≤ di ≤ 1000,d1 < d2 < ... < dn) d 1 , d 2 , . . . , d n ( 1 ≤ d i ≤ 1000 , d 1 < d 2 < . . . < d n ) — the degree set.
Output
In the first line print one integer m(1 ≤ m ≤ 106) m ( 1 ≤ m ≤ 10 6 ) — the number of edges in the resulting graph. It is guaranteed that there exists such a graph that all the conditions hold and it contains no more than 106 10 6 edges. Each of the next m lines should contain two integers vi v i and ui u i (1 ≤ vi, ui ≤ dn + 1) ( 1 ≤ v i , u i ≤ d n + 1 ) — the description of the i-th edge.
Examples
Input
3 2 3 4
Output
8 3 1 4 2 4 5 2 5 5 1 3 2 2 1 5 3
Input
3 1 2 3
Output
4 1 2 1 3 1 4 2 3
제목
n개의 서로 다른 수의 도수 집합을 보여 줍니다. 그림을 만들어서 이 그림은 dn+1dn+1개의 점을 만족시키고 중변자환이 없고 10610개의 6개를 넘지 않으며 이 그림의 모든 점의 도수 insert가 하나의 set에 들어간 후에 입력한 집합과 같습니다.
사고방식 & 분석
먼저 확실한 것은 도수가 d[n]인 점은 틀림없이 다른 모든 점과 연결되어 있다는 것이다. 그러면 우리는 도수가 d[1]인 점의 모든 변은 도수가 d[n]인 점과 연결된 변이라고 가정한다. 그래서 우리는 d[1]개의 도수가 d[n]인 점이 생겼다. 이때 약간의 도수가 모두 d[1]를 차지하는 셈이다.그러면 우리는 d[2]~d[n-1]를 모두 d[1]에서 빼서 그를 하위 문제로 전환시켰다. 그러나 이 하위 문제의 요구 포인트는 바로 현재의 최대 도수+1, 즉 d[n-1]-d[1]+1이다.우리는 우리가 현재 구성한 이 그림이 d[1]개의 도수가 가장 큰 점을 제외하고 d[n]-d[1]+1개의 점이 남았다는 것을 안다. 그러면 우리는 d[n]-d[n-1]개의 도수가 d[1]인 점을 찾으면 된다.나머지는 모두 귀속되고, 경계는 점이 없을 때return, 또는 하나의 도수만 있을 때 완전도를 연결한다.
Code
#pragma GCC optimize(3)
#include
using namespace std;
typedef long long ll;
bool Finish_read;
template<class T>inline void read(T &x){Finish_read=0;x=0;int f=1;char ch=getchar();while(!isdigit(ch)){if(ch=='-')f=-1;if(ch==EOF)return;ch=getchar();}while(isdigit(ch))x=x*10+ch-'0',ch=getchar();x*=f;Finish_read=1;}
template<class T>inline void print(T x){if(x/10!=0)print(x/10);putchar(x%10+'0');}
template<class T>inline void writeln(T x){if(x<0)putchar('-');x=abs(x);print(x);putchar('
');}
template<class T>inline void write(T x){if(x<0)putchar('-');x=abs(x);print(x);}
/*================Header Template==============*/
int n,d[305],cnt,u[1000006],v[1000006];
inline void solve(int l,int r,int vl,int vr) {
if(l>r)
return;
if(l==r) {
for(int i=vr;i>vl;--i)
for(int j=vl;jreturn;
}
int w=d[l];
for(int i=vr;i>vr-w;--i)
for(int j=vl;jint nxtl=vl+d[r]-d[r-1],nxtr=vr-d[l];
for(int i=r;i>=l;--i)
d[i]-=d[l];
solve(l+1,r-1,nxtl,nxtr);
}
int main() {
read(n);
for(int i=1;i<=n;i++)
read(d[i]);
solve(1,n,1,d[n]+1);
writeln(cnt);
for(int i=1;i<=cnt;i++)
printf("%d %d
",u[i],v[i]);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 개발 효율을 높이는 5가지 팁상호 작용 모드 사용 사용python -i xxxx.py은python의 상호작용 모드에 직접 들어가 xxxx를 편리하게 호출할 수 있습니다.py에 정의된 방법과 함수, 특히 main () 방법이 없는 파일을 디버깅하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.