zoukankan      html  css  js  c++  java
  • UVA

     Bandwidth 

    Given a graph (V,E) where V is a set of nodes and E is a set of arcs in VxV, and an ordering on the elements in V, then the bandwidth of a node vis defined as the maximum distance in the ordering between v and any node to which it is connected in the graph. The bandwidth of the ordering is then defined as the maximum of the individual bandwidths. For example, consider the following graph:

    picture25

    This can be ordered in many ways, two of which are illustrated below:

    picture47

    For these orderings, the bandwidths of the nodes (in order) are 6, 6, 1, 4, 1, 1, 6, 6 giving an ordering bandwidth of 6, and 5, 3, 1, 4, 3, 5, 1, 4 giving an ordering bandwidth of 5.

    Write a program that will find the ordering of a graph that minimises the bandwidth.

    Input

    Input will consist of a series of graphs. Each graph will appear on a line by itself. The entire file will be terminated by a line consisting of a single#. For each graph, the input will consist of a series of records separated by `;'. Each record will consist of a node name (a single upper case character in the the range `A' to `Z'), followed by a `:' and at least one of its neighbours. The graph will contain no more than 8 nodes.

    Output

    Output will consist of one line for each graph, listing the ordering of the nodes followed by an arrow (->) and the bandwidth for that ordering. All items must be separated from their neighbours by exactly one space. If more than one ordering produces the same bandwidth, then choose the smallest in lexicographic ordering, that is the one that would appear first in an alphabetic listing.

    Sample input

    A:FB;B:GC;D:GC;F:AGH;E:HD
    #

    Sample output

    A B C F G D H E -> 3
    
    
    
    


    生成排列问题,记录节点和道路,枚举节点的排列,计算每个排列的带宽。注意计算带宽的过程如果大于等于最小带宽,要及时跳出。
    题目只用的22MS, 貌似还可以

    #include <bits/stdc++.h>
    using namespace std;
    
    int cnt = 0;
    int perm[26], res[26];
    int dot[26], beg;
    int road[26][26];
    int Min, Max;
    
    int main()
    {
        string line;
        while(getline(cin, line), line!="#")
        {
            memset(road, 0, sizeof(road));
            memset(dot, 0, sizeof(dot));
            for(size_t i = 0; i != line.size(); i++)
            {
                if(line[i]==':' || line[i]==';')
                    continue;
                if(line[i+1]==':')
                    beg = line[i] - 'A';
                else{
                    road[beg][line[i]-'A'] = 1;
                    road[line[i]-'A'][beg] = 1;
                }
                if(isalpha(line[i]))
                    dot[line[i]-'A'] = 1;
            }
            cnt = 0;
            for(size_t i = 0; i < 26; i++)
                if(dot[i])
                    perm[cnt++] = i;
    
            sort(perm, perm+cnt);
            Min = INT_MAX;
            do{
                Max = INT_MIN;
                for(int i = 0; i < cnt-1; i++)
                    for(int j = i+1; j < cnt; j++)
                        if(road[perm[i]][perm[j]]){
                            Max = max(Max, j-i);
                            if(Max >= Min)
                                goto loop;
                        }
                if(Max < Min){
                    Min = Max;
                    memcpy(res, perm, sizeof(perm));
                }
                loop:;
            }while(next_permutation(perm, perm+cnt));
    
            for(int i = 0; i < cnt; i++)
                printf("%c ", res[i]+'A');
            printf("-> %d
    ", Min);
        }
    }


  • 相关阅读:
    JS搞基指南----延迟对象入门提高资料整理
    JavaScript使用自定义事件实现简单的模块化开发
    nodeJS+bootstarp+mongodb整一个TODO小例子
    nodeJS+express+Jade写一个局域网聊天应用(node基础)
    jQ1.5源码注释以及解读RE
    jQ1.5中的事件系统(低版本的事件系统)
    JS中的事件类型和事件属性的基础知识
    [转][mysql]创建函数失败(1418错误)mysql双主模式导致的问题
    MySQL数据库导入错误:ERROR 1064 (42000) 和 ERROR at line xx:
    Vmware由于centos升级内核不可运行(C header files matching your running kernel were not found)的解决方案
  • 原文地址:https://www.cnblogs.com/kunsoft/p/5312769.html
Copyright © 2011-2022 走看看