题意:给定图,求是带宽最小的结点排列。

分析:结点数最多为8,全排列即可。顶点范围是A~Z。

  1. #pragma comment(linker, "/STACK:102400000, 102400000")
  2. #include<cstdio>
  3. #include<cstring>
  4. #include<cstdlib>
  5. #include<cctype>
  6. #include<cmath>
  7. #include<iostream>
  8. #include<sstream>
  9. #include<iterator>
  10. #include<algorithm>
  11. #include<string>
  12. #include<vector>
  13. #include<set>
  14. #include<map>
  15. #include<stack>
  16. #include<deque>
  17. #include<queue>
  18. #include<list>
  19. #define Min(a, b) ((a < b) ? a : b)
  20. #define Max(a, b) ((a < b) ? b : a)
  21. typedef long long ll;
  22. typedef unsigned long long llu;
  23. const int INT_INF = 0x3f3f3f3f;
  24. const int INT_M_INF = 0x7f7f7f7f;
  25. const ll LL_INF = 0x3f3f3f3f3f3f3f3f;
  26. const ll LL_M_INF = 0x7f7f7f7f7f7f7f7f;
  27. const int dr[] = {, , -, , -, -, , };
  28. const int dc[] = {-, , , , -, , -, };
  29. const int MOD = 1e9 + ;
  30. const double pi = acos(-1.0);
  31. const double eps = 1e-;
  32. const int MAXN = + ;
  33. const int MAXT = + ;
  34. using namespace std;
  35. char s[MAXN];
  36. set<int> node[];
  37. vector<int> v;
  38. int t[];
  39. void init(){
  40. for(int i = ; i < ; ++i){
  41. node[i].clear();
  42. }
  43. v.clear();
  44. memset(t, , sizeof t);
  45. int len = strlen(s);
  46. for(int i = ; i < len; ++i){
  47. if(s[i] == ':'){
  48. int tmp = s[i - ] - 'A';
  49. while(){
  50. ++i;
  51. if(i == len) break;
  52. if(s[i] == ';') break;
  53. node[tmp].insert(s[i] - 'A');
  54. node[s[i] - 'A'].insert(tmp);
  55. }
  56. }
  57. }
  58. }
  59. int main(){
  60. while(scanf("%s", s) == ){
  61. if(s[] == '#') return ;
  62. init();
  63. for(int i = ; i < ; ++i){
  64. if(node[i].size()){
  65. v.push_back(i);
  66. }
  67. }
  68. int len = v.size();
  69. int ans = INT_M_INF;
  70. do{
  71. int tmp = ;
  72. for(int i = ; i < len; ++i){
  73. for(int j = ; j < i; ++j){
  74. if(node[v[i]].count(v[j])){
  75. tmp = max(tmp, i - j);
  76. }
  77. }
  78. }
  79. if(tmp < ans){
  80. ans = tmp;
  81. for(int i = ; i < len; ++i){
  82. t[i] = v[i];
  83. }
  84. }
  85. }while(next_permutation(v.begin(), v.end()));
  86. for(int i = ; i < len; ++i){
  87. printf("%c ", 'A' + t[i]);
  88. }
  89. printf("-> %d\n", ans);
  90. }
  91. return ;
  92. }

UVA - 140 Bandwidth(带宽)(全排列)的更多相关文章

  1. UVa OJ 140 - Bandwidth (带宽)

    Time limit: 3.000 seconds限时3.000秒 Problem问题 Given a graph (V,E) where V is a set of nodes and E is a ...

  2. uva 140 bandwidth (好题) ——yhx

     Bandwidth  Given a graph (V,E) where V is a set of nodes and E is a set of arcs in VxV, and an orde ...

  3. UVA 140 Bandwidth (dfs 剪枝 映射)

    题意: 给定一个n个结点的图G和一个结点的排列, 定义结点i的带宽b(i)为i和相邻结点在排列中的最远距离, 所有b(i)的最大值就是这个图的带宽, 给定G, 求让带宽最小的结点排列. 给定的图 n ...

  4. UVa 140 Bandwidth【枚举排列】

    题意:给出n个节点的图,和一个节点的排列,定义节点i的带宽b[i]为i和其相邻节点在排列中的最远的距离,所有的b[i]的最大值为这个图的带宽,给一个图,求出带宽最小的节点排列 看的紫书,紫书上说得很详 ...

  5. UVA 140 Bandwidth

    题意: 给出一个n个节点的图G,和一个节点的排列,定义节点i的带宽为i和相邻节点在排列中的最远距离,而所有带宽的最大值就是图的带宽,求让图的带宽最小的排列. 分析: 列出所有可能的排列,记录当前找到的 ...

  6. UVA 140 Brandwidth 带宽 (dfs回溯)

    看到next_permutation好像也能过╮(╯▽╰)╭ 这题学习点: 1.建图做映射 2.通过定序枚举保证字典序最小 3.strtok,sscanf,strchr等函数又复习了一遍,尽管程序中没 ...

  7. UVa 140 (枚举排列) Bandwidth

    题意较复杂,请参见原题=_=|| 没什么好说的,直接枚举每个排列就好了,然后记录最小带宽,以及对应的最佳排列. STL里的next_permutation函数真是好用. 比较蛋疼的就是题目的输入了.. ...

  8. UVa 140 带宽

    题意:给出一个n个结点的图G和一个结点的排列,定义结点的带宽为i和相邻结点在排列中的最远距离,求出让带宽最小的结点排列. 思路:用STL的next_permutation来做确实是很方便,适当剪枝一下 ...

  9. 【例题 7-6 UVA - 140】Bandwidth

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 暴力做就好. O(8!*26^2) [代码] /* 1.Shoud it use long long ? 2.Have you ev ...

随机推荐

  1. Chrome 43+浏览器 Cookies encrypted_value解密脚本

    python 3.3.5 # -*- coding: utf-8 -*- # Used information from: # http://stackoverflow.com/questions/4 ...

  2. chromium blog

    http://blog.chromium.org/

  3. ratingbar设置不可调节星星数量

    <RatingBar android:id="@+id/rb_bar" android:layout_width="wrap_content" andro ...

  4. 一段代码详解JavaScript面向对象

    (function(){ //私有静态成员 var user = ""; //私有静态方法 function privateStaticMethod(){ } Box = func ...

  5. aapt: error while loading shared libraries: libstdc++.so.6: wrong ELF class: ELFCLASS64

    前阵子在ubuntu上搭载安卓的开发环境(Eclipse+Sdk+Adt),搭载是完成了,但是却出现了该问题: aapt: error while loading shared libraries: ...

  6. adb not responding. if you'd like to

    在安装genymotion后启动工程报此错误. 解决方案:把其他虚拟机删掉,然后用genymotion新建一个,启动工程OK.

  7. Qt5:窗口居中显示

    QDesktopWidget* desktop = QApplication::desktop(); // =qApp->desktop();也可以move((desktop->width ...

  8. Qt5:QSystemTrayIcon类实现程序托盘图标

    windows下,在许多应用程序中都会实现一个托盘图标,用于隐藏应用程序窗口时还能对该应用程序进行简单的操作,例如 QQ ,renren等程序 那么,在Qt中,如何实现呢? 这就要用到Qt提供的 QS ...

  9. mysql建表---级联删除

    CREATE TABLE `roottb` (  `id` INT(11) UNSIGNED AUTO_INCREMENT NOT NULL,  `data` VARCHAR(100) NOT NUL ...

  10. windows矢量字体点阵数据的提取(转)

    源:windows矢量字体点阵数据的提取 问题参考:windows api 获取字库点阵的问题 1.提取原理 在windows系统当中提取矢量字体的字模有很多方法,下面介绍一种利用GetGlyphOu ...