#237 div2 C. Restore Graph

本文介绍了一个图恢复的问题,其中需要根据给定的最短距离数组重建一个无向图,该图具有特定的顶点数和最大度数限制。文章探讨了输入输出格式、示例测试用例,并提供了一个C++代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. Restore Graph
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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

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

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

Input

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

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

Output

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 m (0 ≤ m ≤ 106) — the number of edges in the found graph.

In each of the next m lines print two space-separated integers ai and bi (1 ≤ ai, bi ≤ nai ≠ bi), denoting the edge that connects vertices with numbers ai and bi. The graph shouldn't contain self-loops and multiple edges. If there are multiple possible answers, print any of them.

Sample test(s)
Input
3 2
0 1 1
Output
3
1 2
1 3
3 2
Input
4 2
2 0 1 3
Output
3
1 3
1 4
2 3
Input
3 1
0 0 0
Output
-1
 
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<string>
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int n,m;
vector<int>v[100010];
struct node{
   int a,b;
}ans[1000010];
int vis[100010];
int maxn;
bool deal()
{
    int len=0;
    if(v[0].size()!=1) return 1;
    if(v[1].size()>m) return 1;
    for(int i=1;i<=maxn;i++)
    {
        if(v[i].size()==0) return 1;
        int pre=0;
        for(int j=0;j<v[i].size();j++)
        {
           if(vis[v[i-1][pre]]==m) pre++;
           if(pre>=v[i-1].size()) return 1;
           vis[v[i-1][pre]]++;
           vis[v[i][j]]++;
           ans[len].a=v[i-1][pre];
           ans[len].b=v[i][j];
           len++;
        }
    }
    printf("%d\n",len);
    for(int i=0;i<len;i++)
        printf("%d %d\n",ans[i].a,ans[i].b);
    return 0;
}
int main()
{

    // freopen("in.in","r",stdin);
     while(~scanf("%d%d",&n,&m))
     {
         for(int i=0;i<=n;i++) v[i].clear();
         int dis;
         maxn=0;
         for(int i=1;i<=n;i++)
         {
             scanf("%d",&dis);
             maxn=max(maxn,dis);
             v[dis].push_back(i);
         }
         memset(vis,0,sizeof(vis));
         if(deal()) printf("-1\n");
     }
     return 0;
}

<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mermaid 编辑器(增强版)</title> <style> :root { --font-main: -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, Helvetica, Arial, sans-serif; --primary-color: #007aff; --text-color: #111; --bg-color: #f9f9f9; --card-bg: #fff; --border-radius: 20px; --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } body { font-family: var(--font-main); background: var(--bg-color); color: var(--text-color); margin: 0; padding: 2rem; } .container { max-width: 960px; margin: auto; } .card { background: var(--card-bg); border-radius: var(--border-radius); padding: 2rem; margin-bottom: 2rem; box-shadow: var(--shadow); } textarea { width: 100%; height: 200px; font-family: monospace; border-radius: 10px; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ccc; } button, select { font-family: inherit; background: var(--primary-color); color: white; padding: 0.5rem 1rem; border: none; border-radius: 8px; cursor: pointer; margin-right: 10px; } .mermaid-box { background: white; border-radius: 12px; padding: 1rem; overflow-x: auto; } </style> <script src="https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/canvg/dist/browser/canvg.min.js"></script> </head> <body> <div class="container"> <div class="card"> <h2>🛠 自定义 Mermaid 编辑器(增强)</h2> <textarea id="mermaidInput">graph TD\n A[开始] --> B[步骤一]\n B --> C[步骤二]\n C --> D[结束]</textarea> <div> <button onclick="renderMermaid()">渲染图表</button> <button onclick="saveSnapshot()">保存快照</button> <button onclick="exportPNG()">导出 PNG</button> <button onclick="clearMermaid()">清空</button> <select id="themeSelect" onchange="switchTheme(this.value)"> <option value="default">亮色主题</option> <option value="dark">暗色主题</option> <option value="neutral">中性灰</option> </select> </div> <div class="mermaid-box" id="customMermaid"></div> <h3>📜 历史快照</h3> <ul id="historyList"></ul> </div> </div> <script> let theme = &#39;default&#39;; let history = JSON.parse(localStorage.getItem(&#39;mermaidHistory&#39;) || &#39;[]&#39;); let currentCode = localStorage.getItem(&#39;lastCode&#39;) || document.getElementById(&#39;mermaidInput&#39;).value; function switchTheme(val) { theme = val; renderMermaid(); } function renderMermaid() { const code = document.getElementById(&#39;mermaidInput&#39;).value; currentCode = code; localStorage.setItem(&#39;lastCode&#39;, code); const insert = document.getElementById(&#39;customMermaid&#39;); insert.innerHTML = &#39;&#39;; mermaid.initialize({ startOnLoad: false, theme }); mermaid.render(&#39;graphDiv&#39;, code, (svgCode) => { insert.innerHTML = svgCode; }); } function clearMermaid() { document.getElementById(&#39;mermaidInput&#39;).value = &#39;&#39;; document.getElementById(&#39;customMermaid&#39;).innerHTML = &#39;&#39;; localStorage.removeItem(&#39;lastCode&#39;); } function saveSnapshot() { history.unshift(currentCode); if (history.length > 10) history = history.slice(0, 10); localStorage.setItem(&#39;mermaidHistory&#39;, JSON.stringify(history)); loadHistory(); } function loadHistory() { const list = document.getElementById(&#39;historyList&#39;); list.innerHTML = &#39;&#39;; history.forEach((code, i) => { const li = document.createElement(&#39;li&#39;); li.innerHTML = `<a href="#" onclick=&#39;restore(${i})&#39;>图 ${i + 1}</a>`; list.appendChild(li); }); } function restore(index) { const code = history[index]; document.getElementById(&#39;mermaidInput&#39;).value = code; renderMermaid(); } async function exportPNG() { const svg = document.querySelector(&#39;#customMermaid svg&#39;); if (!svg) return alert(&#39;请先渲染图表&#39;); const canvas = document.createElement(&#39;canvas&#39;); canvas.width = 1024; canvas.height = 768; const ctx = canvas.getContext(&#39;2d&#39;); const v = await Canvg.fromString(ctx, new XMLSerializer().serializeToString(svg)); await v.render(); const link = document.createElement(&#39;a&#39;); link.download = &#39;diagram.png&#39;; link.href = canvas.toDataURL(); link.click(); } // 初始化渲染 document.getElementById(&#39;mermaidInput&#39;).value = currentCode; renderMermaid(); loadHistory(); </script> </body> </html> 上面的代码有问题,无法渲染mermaid,无法生成渲染图,
最新发布
07-16
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值