CF404C.Restore Graph

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Valera had an undirected connected graph without self-loops and multiple edges consisting of nn vertices. The graph had an interesting property: there were at most kk edges adjacent to each of its vertices. For convenience, we will assume that the graph vertices were indexed by integers from 1 to nn .

One day Valera counted the shortest distances from one of the graph vertices to all other ones and wrote them out in array dd . Thus, element d[i]d[i] of the array shows the shortest distance from the vertex Valera chose to vertex number ii .

Then something irreparable terrible happened. Valera lost the initial graph. However, he still has the array dd . Help him restore the lost graph.

输入格式

The first line contains two space-separated integers nn and kk (1<=k<n<=105)(1<=k<n<=10^{5}) . Number nn shows the number of vertices in the original graph. Number kk shows that at most kk edges were adjacent to each vertex in the original graph.

The second line contains space-separated integers d[1],d[2],...,d[n]d[1],d[2],...,d[n] (0<=d[i]<n)(0<=d[i]<n) . Number d[i]d[i] shows the shortest distance from the vertex Valera chose to the vertex number ii .

输出格式

If Valera made a mistake in his notes and the required graph doesn't exist, print in the first line number -1. Otherwise, in the first line print integer mm (0<=m<=106)(0<=m<=10^{6}) — the number of edges in the found graph.

In each of the next mm lines print two space-separated integers aia_{i} and bib_{i} (1<=ai,bi<=n; aibi)(1<=a_{i},b_{i}<=n; a_{i}≠b_{i}) , denoting the edge that connects vertices with numbers aia_{i} and bib_{i} . The graph shouldn't contain self-loops and multiple edges. If there are multiple possible answers, print any of them.

输入输出样例

  • 输入#1

    3 2
    0 1 1
    

    输出#1

    3
    1 2
    1 3
    3 2
    
  • 输入#2

    4 2
    2 0 1 3
    

    输出#2

    3
    1 3
    1 4
    2 3
    
  • 输入#3

    3 1
    0 0 0
    

    输出#3

    -1
    
首页