zoukankan      html  css  js  c++  java
  • Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) E Underground Lab

    地址:http://codeforces.com/contest/782/problem/E

    题目:

    E. Underground Lab
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    The evil Bumbershoot corporation produces clones for gruesome experiments in a vast underground lab. On one occasion, the corp cloned a boy Andryusha who was smarter than his comrades. Immediately Andryusha understood that something fishy was going on there. He rallied fellow clones to go on a feud against the evil corp, and they set out to find an exit from the lab. The corp had to reduce to destroy the lab complex.

    The lab can be pictured as a connected graph with n vertices and m edges. k clones of Andryusha start looking for an exit in some of the vertices. Each clone can traverse any edge once per second. Any number of clones are allowed to be at any vertex simultaneously. Each clone is allowed to stop looking at any time moment, but he must look at his starting vertex at least. The exit can be located at any vertex of the lab, hence each vertex must be visited by at least one clone.

    Each clone can visit at most  vertices before the lab explodes.

    Your task is to choose starting vertices and searching routes for the clones. Each route can have at most  vertices.

    Input

    The first line contains three integers nm, and k (1 ≤ n ≤ 2·105, n - 1 ≤ m ≤ 2·105, 1 ≤ k ≤ n) — the number of vertices and edges in the lab, and the number of clones.

    Each of the next m lines contains two integers xi and yi (1 ≤ xi, yi ≤ n) — indices of vertices connected by the respective edge. The graph is allowed to have self-loops and multiple edges.

    The graph is guaranteed to be connected.

    Output

    You should print k lines. i-th of these lines must start with an integer ci () — the number of vertices visited by i-th clone, followed by ci integers — indices of vertices visited by this clone in the order of visiting. You have to print each vertex every time it is visited, regardless if it was visited earlier or not.

    It is guaranteed that a valid answer exists.

    Examples
    input
    3 2 1
    2 1
    3 1
    output
    3 2 1 3
    input
    5 4 2
    1 2
    1 3
    1 4
    1 5
    output
    3 2 1 3
    3 4 1 5
    Note

    In the first sample case there is only one clone who may visit vertices in order (2, 1, 3), which fits the constraint of 6 vertices per clone.

    In the second sample case the two clones can visited vertices in order (2, 1, 3) and (4, 1, 5), which fits the constraint of 5 vertices per clone.

     思路:dfs一遍,记录路径(路径上点的个数最多2*N),然后将所有路径分配给k个克隆人。

    #include <bits/stdc++.h>
    
    using namespace std;
    
    #define MP make_pair
    #define PB push_back
    typedef long long LL;
    typedef pair<int,int> PII;
    const double eps=1e-6;
    const double pi=acos(-1.0);
    const int K=4e5+7;
    const int mod=1e9+7;
    
    int n,m,num,k,cnt,vis[K],rk[K];
    vector<int>mp[K];
    
    void dfs(int x)
    {
        vis[x]=1,rk[++cnt]=x;
        for(int i=0;i<mp[x].size();i++)
        if(!vis[mp[x][i]])
            dfs(mp[x][i]),rk[++cnt]=x;
    
    }
    
    int main(void)
    {
        cin>>n>>m>>num;
        for(int i=1,x,y;i<=m;i++)
            scanf("%d%d",&x,&y),mp[x].PB(y),mp[y].PB(x);
        k=(2*n+num-1)/num;
        dfs(1);
        for(int i=1,sum;i<=num;i++)
        {
            sum=min(k,cnt);
            if(sum==0)
            {
                printf("1 1
    ");
                
            }
            else
            {
                printf("%d ",sum);
                for(int j=1;j<=sum&&cnt;j++,cnt--)
                    printf("%d ",rk[cnt]);
                puts("");
            }
        }
        return 0;
    }

     

     

  • 相关阅读:
    kibana We couldn't activate monitoring
    学Redis这篇就够了!
    elasticsearch 官方监控文档 老版但很有用
    java dump 内存分析 elasticsearch Bulk异常引发的Elasticsearch内存泄漏
    Apache Beam实战指南 | 大数据管道(pipeline)设计及实践
    InnoDB一棵B+树可以存放多少行数据?
    函数编程真不好
    面向对象编程灾难
    可能是全网最好的MySQL重要知识点 | 面试必备
    终于有人把elasticsearch原理讲通了
  • 原文地址:https://www.cnblogs.com/weeping/p/6516562.html
Copyright © 2011-2022 走看看