【Codeforces 404C】Restore Graph
【链接】 我是链接,点我呀:)
【题意】
每个节点的度数不超过k
让你重构一个图
使得这个图满足 从某个点开始到其他点的最短路满足输入的要求
【题解】
把点按照dep的值分类
显然只能由dep到dep+1连边
设cnt[dep]表示到起点的距离为dep的点的集合
如果cnt[dep].size>cnt[dep+1].size
那么只要把dep层的前cnt[dep+1].size个点和dep+1层的点连就好了
否则
只能让dep层的点每个多连几个dep+1层的点了
【代码】
import java.io.*;
import java.util.*;
public class Main {
static InputReader in;
static PrintWriter out;
public static void main(String[] args) throws IOException{
//InputStream ins = new FileInputStream("E:\\rush.txt");
InputStream ins = System.in;
in = new InputReader(ins);
out = new PrintWriter(System.out);
//code start from here
new Task().solve(in, out);
out.close();
}
static int N = (int)1e5;
static class Task{
class Pair{
int x,y;
public Pair(int x,int y) {
this.x = x;
this.y = y;
}
}
int n,k;
ArrayList<Integer> g[] = new ArrayList[N+10];
ArrayList<Pair> ans = new ArrayList<>();
public void solve(InputReader in,PrintWriter out) {
for (int i = 0;i <= N;i++) g[i]=new ArrayList<Integer>();
n = in.nextInt();k = in.nextInt();
for (int i = 1;i <= n;i++) {
int d;
d = in.nextInt();
g[d].add(i);
}
if ((int)g[0].size()>1) {
out.println(-1);
}else {
for (int i = 1;i <= n;i++)
if ((int)g[i].size()>0 && g[i-1].isEmpty()) {
out.println(-1);
return;
}
for (int i = 1;i <= n;i++) {
if (g[i].isEmpty()) break;
int x = g[i].size();
int y = g[i-1].size();
//out.println(x+" "+y);
if (y>=x) {
for (int j = 0;j < x;j++) {
ans.add(new Pair(g[i-1].get(j),g[i].get(j)));
}
int ma = 1;
if (i-1>=1) {
ma = 2;
}
if (ma>k) {
out.println(-1);
return;
}
}else {
//y<x
int need = x/y;
if (x%y!=0) need++;
int ma = need;
//out.println(ma);
if (i-1>=1) ma++;
if (ma>k) {
out.println(-1);
return;
}
for (int j = 0;j < x;j++) {
int now = j;
now = now % y;
ans.add(new Pair(g[i-1].get(now),g[i].get(j)));
}
}
}
out.println((int)ans.size());
for (int i = 0;i < ans.size();i++) {
out.println(ans.get(i).x+" "+ans.get(i).y);
}
}
}
}
static class InputReader{
public BufferedReader br;
public StringTokenizer tokenizer;
public InputReader(InputStream ins) {
br = new BufferedReader(new InputStreamReader(ins));
tokenizer = null;
}
public String next(){
while (tokenizer==null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(br.readLine());
}catch(IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
}
}
【Codeforces 404C】Restore Graph的更多相关文章
- 【11.61%】【codeforces 670F】Restore a Number
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【Codeforces 246D】Colorful Graph
[链接] 我是链接,点我呀:) [题意] 让你找到所有和x颜色的点中,和该颜色的点颜色不同的相邻的点的个数(重复颜色算一次) 求出哪种颜色的所要求的点的数量最多. [题解] 对于每一条边只会被查到两次 ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【codeforces 755E】PolandBall and White-Red graph
[题目链接]:http://codeforces.com/contest/755/problem/E [题意] 给你n个节点; 让你在这些点之间接若干条边;构成原图(要求n个节点都联通) 然后分别求出 ...
- 【codeforces 716D】Complete The Graph
[题目链接]:http://codeforces.com/problemset/problem/716/D [题意] 给你一张图; 这张图上有一些边的权值未知; 让你确定这些权值(改成一个正整数) 使 ...
- 【34.57%】【codeforces 557D】Vitaly and Cycle
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【27.91%】【codeforces 734E】Anton and Tree
time limit per test3 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【30.36%】【codeforces 740D】Alyona and a tree
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【codeforces 755C】PolandBall and Forest
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
随机推荐
- bzoj 1622: [Usaco2008 Open]Word Power 名字的能量【模拟】
模拟即可,注意包含可以是不连续的 方便起见读入的时候全转成小写 #include<iostream> #include<cstdio> using namespace std; ...
- robotframework - Edit编辑器
1.测试项目&套件 提供的Edit编辑器 2.在 Edit 标签页中主要分:加载外部文件.定义内部变量.定义元数据等三个部分. (1):加载外部文件Add Library:加载测试库,主要是[ ...
- 题解报告:hdu 1035 Robot Motion(简单搜索一遍)
Problem Description A robot has been programmed to follow the instructions in its path. Instructions ...
- 用SpringMVC实现的上传下载
1.导入相关jar包 commons-fileupload.jar commons-io.jar 2.配置web.xml文件 <?xml version="1.0" enco ...
- Spring.Net学习笔记(6)-方法注入
一.开发环境 系统:win10 编译器:VS2013 二.涉及程序集 Spring.Core.dll 1.3.1 Common.Logging.dll 三.开发过程 1.项目结构 2.编写Mobile ...
- 预采订单管理接收来源App数据
- Selenium基于Python web自动化基础二 -- 免登录、等待及unittest单元测试框架
一.免登录在进行测试的过程中难免会遇到登录的情况,给测试工作添加了工作量,本文仅提供一些思路供参考解决方式:手动请求中添加cookies.火狐的profile文件记录信息实现.人工介入.万能验证码.去 ...
- servU服务器连接不上问题的解决
在服务器上安装了servU64位版,建立了用户,设置了防火墙,正常启动. 但在客户端发出FTP://服务器IP 命令后,弹出输入用户名和密码的对话框,输入正确的用户名和密码后,却始终连接不上. ftp ...
- ubuntu+ngnix+thinkphp pathinfo配置
一.thinkphp 项目改为pathinfo模式 XXX/ThinkPHP/Conf/convention.php文件中找到 'URL_MODEL' => 1, // URL访问模式,可选参数 ...
- Linux服务器文件权限被改
阿里云买的ubuntu服务器遭受了不明攻击,导致站点访问不了,折腾了很久,才发现是文件的权限被修改了.然后就是一点点的修改,很是麻烦.服务器的安全要重视呢! 1.修改权限 chmod 755 * -R ...