图片加载可能有点慢,请跳过题面先看题解,谢谢




题目给出了一个信息:答案是有向边最长路 \(k\) 的值或者是 \(k+1\) 的值
那么题目就变成了:求是否有一种给无向边定向的方案,使得在以有向边最长路的起点为根的树(其实也并不是一棵树,只是当成一棵树来处理)内,点的深度在 \([1,k]\) 内
如果存在这样的方案,答案为 \(k\) ,否则答案为 \(k+1\)
\(k\) 的值和有向边最长路的起点我们可以暴力 \(dfs\) 在 \(O(n)\) 的时间内求出来
关键是怎么求方案?
$
$
这样设:\((bool)f[x][dep]\) 为,到 \(x\) 这个点深度为 \(dep\) 时,以 \(x\) 为根的子树是否可行
对于与 \(x\) 相连的边我们可以这样转移:

  1. 初值,\(f[x][dep]=1\);
  2. \(x\)->\(son\) 或者 \(x\)--\(son\),--->\(f[son][dep+j]\);
  3. \(son\)->\(x\) 或者 \(x\)--\(son\),--->\(f[son][dep-j]\);

其中,\(1\leq j,dep-j\) ;\(dep+j\leq k\)
\(f[x][dep]=f[x][dep]\wedge(f[son]有一个为 1 )\)
$
$

//made by Hero_of_Someone
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#define il inline
#define RG register
using namespace std;

int n,u,k,Dis[210];
bool vis[210][210],f[210][210];
int num,head[210],nxt[410],to[410],w[410];
il void add(int u,int v,int d){ //d: 0,u->v;1,u--v;2,v->u;
   nxt[++num]=head[u];to[num]=v;w[num]=d;head[u]=num;
}

il void init(){
   num=0; memset(head,0,sizeof(head));
   n=u; char s[10];
   do{
      n=max(n,u);
      while(scanf("%s",s)==1){
         if(s[0]=='0') break;
         RG int v=0,len=strlen(s);
         RG char ch='n';
         for(int i=0;i<len;i++)
            if(s[i]=='u'||s[i]=='d') ch=s[i];
            else v*=10,v+=s[i]-'0';
         n=max(n,v);
         if(ch=='n') add(u,v,1),add(v,u,1);
         if(ch=='d') add(u,v,0),add(v,u,2);
         if(ch=='u') add(u,v,2),add(v,u,0);
      }
      scanf("%d",&u);
   }while(u);
}

il void pre(int x){
   if(Dis[x]) return ; Dis[x]=1;
   for(int i=head[x];i;i=nxt[i]){
      if(w[i]) continue; pre(to[i]);
      Dis[x]=max(Dis[x],Dis[to[i]]+1);
   }
}

il bool dfs(int fa,int x,int dep){
   if(vis[x][dep]) return f[x][dep];
   vis[x][dep]=f[x][dep]=1;
   for(int i=head[x];i;i=nxt[i]){
      RG int v=to[i]; if(v==fa) continue;
      RG bool flag=0;
      if(!w[i]||w[i]==1)
         for(int j=1;(!flag)&&dep+j<=k;j++)
            flag=dfs(x,v,dep+j);
      if(w[i]==2||w[i]==1)
         for(int j=1;(!flag)&&(dep-j);j++)
            flag=dfs(x,v,dep-j);
      f[x][dep]=f[x][dep]&flag;
   }
   return f[x][dep];
}

il void work(){
   memset(Dis,0,sizeof(Dis));
   for(int i=1;i<=n;i++) pre(i);
   RG int Max=1; for(int i=2;i<=n;i++) if(Dis[i]>Dis[Max]) Max=i;
   k=Dis[Max]; memset(vis,0,sizeof(vis));
   if(dfs(0,Max,1)) printf("%d\n",k);
   else printf("%d\n",k+1);
}

int main(){ while(scanf("%d",&u)&&u){ init(); work(); } return 0; }

[UVALive 3683] A Scheduling Problem的更多相关文章

  1. 【暑假】[深入动态规划]UVa 1380 A Scheduling Problem

     UVa 1380 A Scheduling Problem 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=41557 ...

  2. 【UVA 1380】 A Scheduling Problem (树形DP)

    A Scheduling Problem   Description There is a set of jobs, say x1, x2,..., xn <tex2html_verbatim_ ...

  3. UVALive 7457 Discrete Logarithm Problem (暴力枚举)

    Discrete Logarithm Problem 题目链接: http://acm.hust.edu.cn/vjudge/contest/127401#problem/D Description ...

  4. Gym 101194A / UVALive 7897 - Number Theory Problem - [找规律水题][2016 EC-Final Problem A]

    题目链接: http://codeforces.com/gym/101194/attachments https://icpcarchive.ecs.baylor.edu/index.php?opti ...

  5. UVALive 6909 Kevin's Problem 数学排列组合

    Kevin's Problem 题目连接: https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid ...

  6. uva1380 A Scheduling Problem

    按紫书来注意这道题的题目给了很大的方便,就相当于验证k是不是答案,不是的话就是k+1 #include<iostream> #include<string> #include& ...

  7. UVA 1380 A Scheduling Problem

    题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...

  8. UVALive - 7041 G - The Problem to Slow Down You

    题意:求两个串的公共回文子串个数 题解:建两个回文自动机,从0和1各跑一边就是答案了,因为对于回文自动机来说,从头开始dfs就能找出该字符串的所有回文串 //#pragma GCC optimize( ...

  9. UVALive - 3521 Joseph's Problem (整除分块)

    给定$n,k$$(1\leqslant n,k\leqslant 10^9)$,计算$\sum\limits _{i=1}^nk\: mod\:i$ 通过观察易发现$k\%i=k-\left \lfl ...

随机推荐

  1. python时间模块详解(time模块)

    time 模块 -- 时间获取和转换 time 模块提供各种时间相关的功能 在 Python 中,与时间处理有关的模块包括:time,datetime 以及 calendar 必要说明: 虽然这个模块 ...

  2. Oracle扩展包(pipe,alert,job,scheduler)

    --定义包中函数的纯度级别 create or replace package purityTest is type dept_typ is table of dept%rowtype index b ...

  3. Netty源码分析第6章(解码器)---->第3节: 行解码器

    Netty源码分析第六章: 解码器 第三节: 行解码器 这一小节了解下行解码器LineBasedFrameDecoder, 行解码器的功能是一个字节流, 以\r\n或者直接以\n结尾进行解码, 也就是 ...

  4. 简单安装与使用虚拟环境virtualenv

    安装虚拟环境的命令如下: sudo pip install virtualenv sudo pip install virtualenvwrapper 创建虚拟环境的命令如下: mkvirtualen ...

  5. js 基础拓展

    1.关于 try catch 的用法 <body> <div>请输出一个 5 到 10 之间的数字:</div> <input id="demo&q ...

  6. C++ 类 析构函数

    一.析构函数的定义 析构函数为成员函数的一种,名字与类名相同,在前面加‘~’没有参数和返回值在C++中“~”是位取反运算符.一个类最多只能有一个析构函数.析构函数不返回任何值,没有函数类型,也没有函数 ...

  7. iOS开发学习-资源打包

    图片是被放到Images.xcassets中 1.部署版本在>=iOS8的时候,打包的资源包中的图片会被放到Assets.car 图片被压缩: 2.部署版本在<iOS8的时候,打包的资源包 ...

  8. 软工1816 · Beta冲刺(3/7)

    团队信息 队名:爸爸饿了 组长博客:here 作业博客:here 组员情况 组员1(组长):王彬 过去两天完成了哪些任务 协助后端完成历史记录接口.美食排行榜接口 完成食堂平面图的绘制 确定web端业 ...

  9. Week-4-作业1

    前言 经过了上周作业的学习拾遗,让我学到了很多东西,也能更好的阅读<构建之法>这本书,下面是我在阅读过第四章和第十七章之后想到的一些问题. 第四章 4.2.1 关于缩进,书中说用四个空格刚 ...

  10. 团队作业4 Alpha冲刺《嗨!你的快递》

    仓库地址:https://git.coding.net/day_light/ourexpressmaster1.git   张新宇 1第一天日期:2018/6/13 1.1今日任务 进行核心功能数据匹 ...