Destroying the bus stations

Destroying the bus stations
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 1832 Accepted: 595

Description

Gabiluso is one of the greatest spies in his country. Now he's trying to complete an “impossible” mission - to make it slow for the army of City Colugu to reach the airport. City Colugu has n bus stations and m roads. Each road connects two bus stations directly, and all roads are one way streets. In order to keep the air clean, the government bans all military vehicles. So the army must take buses to go to the airport. There may be more than one road between two bus stations. If a bus station is destroyed, all roads connecting that station will become no use. What's Gabiluso needs to do is destroying some bus stations to make the army can't get to the airport in k minutes. It takes exactly one minute for a bus to pass any road. All bus stations are numbered from 1 to n. The No.1 bus station is in the barrack and the No. n station is in the airport. The army always set out from the No. 1 station. 

No.1 station and No. n station can't be destroyed because of the heavy guard. Of course there is no road from No.1 station to No. n station. 

Please help Gabiluso to calculate the minimum number of bus stations he must destroy to complete his mission.

Input

There are several test cases. Input ends with three zeros. 
For each test case: 
The first line contains 3 integers, n, m and k. (0 < n <= 50,0 < m <= 4000, 0 < k < 1000) 
Then m lines follows. Each line contains 2 integers, s and f, indicating that there is a road from station No. s to station No. f.

Output

For each test case, output the minimum number of stations Gabiluso must destroy.

Sample Input

5 7 3 
1 3 
3 4 
4 5 
1 2 
2 5 
1 4 
4 5 
0 0 0

Sample Output

2

大神的标程

  1 #include <iostream>
  2 #include <cstring>
  3 
  4 using namespace std;
  5 const int maxm=10005;
  6 const int maxn=105;
  7 
  8 struct aaa
  9 {
 10     int s,f,next;
 11 };
 12 aaa c[maxm];
 13 int sta[maxn],fa[maxn],zh[maxn];
 14 int d[maxn][maxn],e[maxn];
 15 bool b[maxn];
 16 int n,m,now,tot;
 17 bool goal;
 18 void ins(int s,int f)
 19 {
 20     now++;
 21     c[now].s=s,c[now].f=f;c[now].next=sta[s],sta[s]=now;
 22 }
 23 
 24 void bfs()
 25 {
 26     int i,c1,op,k,t;
 27     c1=0,op=1;
 28     for(i=1;i<=n;i++)
 29      fa[i]=0;
 30     zh[1]=1;
 31     fa[1]=-1;
 32     while(c1<op)
 33     {
 34         c1++,k=zh[c1];
 35         for(t=sta[k];t;t=c[t].next)
 36         if(b[c[t].f]&&fa[c[t].f]==0)
 37         {
 38             zh[++op]=c[t].f;
 39             fa[c[t].f]=c[t].s;
 40             if(c[t].f==n) break;
 41         }
 42         if(fa[n]) break;
 43     }
 44 }
 45 
 46 void dfs(int deep)
 47 {
 48     int i,c1,op,l,k;
 49     if(goal) return;
 50     bfs();
 51     if(fa[n]==0)
 52     {
 53         goal=true;return;
 54     }
 55     l=0;
 56     for(k=n;k>1;k=fa[k])
 57       l++,d[deep][l]=k;
 58     if(l>m)
 59     { goal=true;
 60       return;
 61     }
 62     if(deep>tot) return;
 63     for(i=2;i<=l;i++)
 64     {
 65         b[d[deep][i]]=false;
 66         if(e[d[deep][i]]==0) dfs(deep+1);
 67         b[d[deep][i]]=true;
 68         e[d[deep][i]]++;
 69     }
 70     for(i=2;i<=l;i++)
 71      e[d[deep][i]]--;
 72 }
 73 
 74 int make()
 75 {
 76     int i,j;
 77     goal=false;
 78     for(i=0;i<=n;i++)
 79     {
 80         tot=i;
 81         for(j=1;j<=n;j++)
 82          b[j]=true;
 83          memset(e,0,sizeof(e));
 84          dfs(1);
 85          if(goal) return i;
 86     }
 87     return n;
 88 }
 89 
 90 int main()
 91 {
 92     int i,s,f,g;
 93     while(true)
 94     {
 95         cin>>n>>g>>m;
 96         if(n==0) break;
 97         memset(sta,0,sizeof(sta));
 98         now=0;
 99         for(i=1;i<=g;i++)
100         {
101             cin>>s>>f;
102             ins(s,f);
103         }
104        cout<<make()<<endl;
105     }
106     return 0;
107 }

 

转载于:https://www.cnblogs.com/767355675hutaishi/p/4099034.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/290381.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Pytorch快速入门笔记

Pytorch 入门笔记1. Pytorch下载与安装2. Pytorch的使用教程2.1 Pytorch设计理念及其基本操作2.2 使用torch.nn搭建神经网络2.3 创建属于自己的Dataset和DataLoader2.3.1 编写Dataset类2.3.2 编写Transform类2.3.3 将Transform融合到Dataset中去2.3.4 编写DataLoader类2.4 使用…

详解用65行javascript代码做Flappy Bird

点击查看特效JavaScript做Flappy Bird游戏&#xff0c;代码仅仅65行资源包括&#xff1a;javascript源码&#xff1a;phaser.min.js&#xff1b;main.js&#xff1b;index.html素材&#xff1a;两张图片&#xff01;素材PS&#xff1a;素材源码下载来我的前端群570946165&#…

模板使用的一个坑

html模板相信很多人都用过&#xff0c;类似angular中的指令&#xff0c;通过模板对于html中很多相似的片段完全可以借助for循环或者ng-repeat指令来生成&#xff0c;大大提高效率。 最近在使用模板时候碰到一个坑&#xff0c;分享出来&#xff0c;希望对后来者有所帮助。 重构之…

C和指针之数组编程练习5 (矩阵相乘)

1、问题 5.如果A是个x行y列的矩阵,B是个y行z列的矩阵,把A和B相乘,其结果将是另一个x行z列的矩阵C。这个矩阵的每个元素是由下面的公式决定的: 例如: 结果矩阵中14这个值是通过2-2加上-6-3得到的,编写一个函数,用于执行两个矩阵的乘法。函数的原型如下: void matrix_mul…

我的技术回顾因ABP框架触发DevOps云原生之路-2020年

我的技术回顾&#xff1a;2015年&#xff1a;我的技术回顾那些与ABP框架有关的故事-2015年2016年&#xff1a;从ABP框架国内社区发展回顾.NET技术变迁-2016年2017年&#xff1a;我的技术回顾那些与ABP框架有关的故事-2017年2018年&#xff1a;我的技术回顾那些与ABP框架有关的故…

半身头像

画的好丑。。。继续加油 转载于:https://www.cnblogs.com/manlurensheng/p/4102631.html

Swift - 操作SQLite数据库(引用SQLite3库)

SQLite轻量级数据库在移动应用中使用非常普遍&#xff0c;但是目前的库是C编写的&#xff0c;为了方便使用&#xff0c;对SQLite相关的操作用Swift进行了封装。这个封装代码使用了一个开源项目SQLiteDB&#xff0c;地址是&#xff1a;https://github.com/fahimf/sqlitedb 重要事…

最长单调递增子序列

1.问题描述&#xff1a;求一个正整数序列的最长单调自增子序列&#xff0c;子序列不要求是连续的。例如Input&#xff1a;55 2 4 3 1Output&#xff1a;22. 算法复杂度是O(N*N)f[i]是以a[i]为最大值的子序列&#xff0c;那么f[]的最大值就是要的结果。int f[],a[];f[0] 1;for(…

如何在Clion中使用C++调用Python代码

在很多时候&#xff0c;我们需要在一个c工程项目中调用部分Python代码&#xff0c;这就需要我们实现Python和C之间的交互。交互方式有两种&#xff1a;1. 依靠 TCP 建立的网络通信交互&#xff1b;2. 嵌入式混合语言编程&#xff08;Embedding Code&#xff09;。这里主要介绍后…

C和指针之数组编程练习8(8皇后问题)

1、问题 *在88格的国际象棋上摆放八个皇后,使其不能互相攻击 *即任意两个皇后都不能处于同一行、同一列或同一斜线上, *问有多少种摆法,并把所有合法的二维数组打印出来 2、代码实现 #include <stdio.h> #include <stdlib.h>/***在88格的国际象棋上摆放…

.NET6之MiniAPI(二十四):用Polly重试

为了保障系统的稳定和安全&#xff0c;在调用三方服务时&#xff0c;可以增加重试和熔断。重试是调用一次失败后再试几试&#xff0c;避免下游服务一次闪断&#xff0c;就把整个链路终止&#xff1b;熔断是为了防止太多的次数的无效访问&#xff0c;导致系统不可知异常。Polly是…

android项目中单实例数据库类

一、数据库操作package com.ping.db;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteDatabase.CursorFactory;import android.database.sqlite.SQLiteOpenHelper;/** * describe <数据库操作> */p…

求职准备

昨天下班回家等车时&#xff0c;我一个知道我年底要离职的同事问我&#xff0c;你有没有开始找工作啊&#xff1f;我说还没有。她就疑惑我怎么那么淡定。事实上&#xff0c;虽然我确实并没有开始注册什么求职网站以及写简历&#xff0c;但是我的准备工作却早已开始。包括在这里…

jQuery-DOM操作之属性、class

1、属性操作 1&#xff09;、attr()--获取和设置属性 <script type"text/javascript">$(function(){var $p $(p);var p_txt $p.attr(title); //获取p元素属性title的值alert(p_txt);$(p).attr(title,love); //设置单个的属性值$(p).attr({class:love,id:fo…

CLion 中使用 C++ 版本的 OpenCV

配置环境&#xff1a; Windows 10CLion 2020OpenCV 3.4.1MinGW-w64 1. 下载 CLion 并配置好 MinGW CLion 下载地址&#xff1a;https://www.jetbrains.com/clion MinGW 安装包下载地址&#xff1a;链接&#xff1a;https://pan.baidu.com/s/1c00uHbcf_jGeDDrVg99jtA 提取码&…

C和指针之auto和内存栈和register关键字

1、auto 在C代码中每个函数都有其生命周期(也称作用域),在函数生命周期中声明的变量通常叫做局部变量,也叫自动变量。例如: 复制代码代码如下: int chenyu(){ int a = 10; // auto int a = 10; return 0; } 整型变量a在fun函数内声明,其作用域为chenyu函数内…

如何理解 C# 中的 System.Void 类型?

咨询区 ordag我知道方法声明成 void 表示不返回什么东西&#xff0c;但我发现在 C# 中 void 不仅仅是一个关键词&#xff0c;而且还是一个真实的类型。void 是 System.Void 的别名&#xff0c;就像 int 的别名是 System.Int32 一样&#xff0c;但为什么不允许直接使用Void类型呢…

ArrayList 的实现原理

ArrayList 是List接口的可变数组的实现。实现了所有可选列表的操作&#xff0c;并包括null值在内的所有元素。此类还提供了一些方法来操作内部用来存储列表的数组大小。 ArrayList 的是实现&#xff1a; 对于ArrayList而言&#xff0c;他实现List接口、底层使用数组保存所有元…

获得手机的ip

本文转载至 http://blog.csdn.net/showhilllee/article/details/8746114 iosip手机貌似ASI里获取ip地址的链接不可以了。也曾试过whatismyip&#xff0c;在其网站上的截图获取的ip是正确的&#xff0c;单不知道为什么在我这里却是错误的。所以&#xff0c;在这里分享一下获得手…

Idea maven项目不能新建package和class的解决

如图&#xff0c;新建的maven项目不能新建package 这是因为Java是普通的文件夹&#xff0c;要设置为 现在就可以了