博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF746G New Roads
阅读量:5760 次
发布时间:2019-06-18

本文共 3262 字,大约阅读时间需要 10 分钟。

G. New Roads
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There are n cities in Berland, each of them has a unique id — an integer from 1 to n, the capital is the one with id 1. Now there is a serious problem in Berland with roads — there are no roads.

That is why there was a decision to build n - 1 roads so that there will be exactly one simple path between each pair of cities.

In the construction plan t integers a1, a2, ..., at were stated, where t equals to the distance from the capital to the most distant city, concerning new roads. ai equals the number of cities which should be at the distance i from the capital. The distance between two cities is the number of roads one has to pass on the way from one city to another.

Also, it was decided that among all the cities except the capital there should be exactly k cities with exactly one road going from each of them. Such cities are dead-ends and can't be economically attractive. In calculation of these cities the capital is not taken into consideration regardless of the number of roads from it.

Your task is to offer a plan of road's construction which satisfies all the described conditions or to inform that it is impossible.

Input

The first line contains three positive numbers nt and k (2 ≤ n ≤ 2·105, 1 ≤ t, k < n) — the distance to the most distant city from the capital and the number of cities which should be dead-ends (the capital in this number is not taken into consideration).

The second line contains a sequence of t integers a1, a2, ..., at (1 ≤ ai < n), the i-th number is the number of cities which should be at the distance i from the capital. It is guaranteed that the sum of all the values ai equals n - 1.

Output

If it is impossible to built roads which satisfy all conditions, print -1.

Otherwise, in the first line print one integer n — the number of cities in Berland. In the each of the next n - 1 line print two integers — the ids of cities that are connected by a road. Each road should be printed exactly once. You can print the roads and the cities connected by a road in any order.

If there are multiple answers, print any of them. Remember that the capital has id 1.

Examples
input
Copy
7 3 3 2 3 1
output
7 1 3 2 1 2 6 2 4 7 4 3 5
input
Copy
14 5 6 4 4 2 2 1
output
14 3 1 1 4 11 6 1 2 10 13 6 10 10 12 14 12 8 4 5 1 3 7 2 6 5 9
input
Copy
3 1 1 2
output
-1

 

 【代码】

#include
#include
using namespace std;int n,t,k,a[300000],Max=0,Min=0;int main() { scanf("%d%d%d",&n,&t,&k); a[0]=0; for(int i=1; i<=t; i++) { scanf("%d",&a[i]); if(a[i]>a[i-1])Min+=a[i]-a[i-1]; Max+=a[i]-1; } Max++; if(k
Max)puts("-1"); else{ printf("%d\n",n); int T=Max-k,tot=a[1]+2; for(int i=2;i<=a[1]+1;i++) printf("1 %d\n",i); for(int i=2;i<=t;i++){ int tt=min(a[i-1],a[i])-1,ttt=0; while(tt>0&&T>0){ if(ttt>0)tt--,T--; printf("%d %d\n",tot-a[i-1]+ttt,tot+ttt); ttt++; } if(tt==0||T==0){ while(ttt

 

 

转载于:https://www.cnblogs.com/kcfzyhq/p/8516225.html

你可能感兴趣的文章
Python3网络爬虫快速入门实战解析
查看>>
TeeChart Pro VCL/FMX教程(六):使用系列(一)
查看>>
UIbot新版即将来袭,邀您来体验
查看>>
是时候为自己的后半生考虑了——致奔三的互联网人
查看>>
java B2B2C 源码 多级分销springmvc mybatis多租户电子商城系统-注册中心Eureka
查看>>
小程序问题答疑:小程序加盟代理选择哪家公司好?
查看>>
【分享】分享一个基于SSH实现的简单学生选课系统(附源码)
查看>>
数字和字母组合并生成图片的验证码祥解
查看>>
复习PHP-语言参考-生成器
查看>>
我的友情链接
查看>>
perl实例详解第四版笔记2 模块化
查看>>
【腾讯Bugly干货分享】深入源码探索 ReactNative 通信机制
查看>>
【腾讯Bugly干货分享】微信终端跨平台组件 mars 系列(一) - 高性能日志模块xlog...
查看>>
我的友情链接
查看>>
关于个人网站申报注意的问题
查看>>
26期20180611文件互传,用户配置文件,密码文件,组和用户管理
查看>>
JEPLUS平台首页规划之统计图版块的配置讲解
查看>>
第6章 存储结构与磁盘划分
查看>>
单臂路由
查看>>
App推广的新方法:同等资源位转化率提升90%
查看>>