1087 A Plug for UNIX//MAXFLOW
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 8414
Accepted: 2640
Description
You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an international mandate to make the free flow of information and ideas on the Internet as cumbersome and bureaucratic as possible.
Since the room was designed to accommodate reporters and journalists from around the world, it is equipped with electrical receptacles to suit the different shapes of plugs and voltages used by appliances in all of the countries that existed when the room was built. Unfortunately, the room was built many years ago when reporters used very few electric and electronic devices and is equipped with only one receptacle of each type. These days, like everyone else, reporters require many such devices to do their jobs: laptops, cell phones, tape recorders, pagers, coffee pots, microwave ovens, blow dryers, curling
irons, tooth brushes, etc. Naturally, many of these devices can operate on batteries, but since the meeting is likely to be long and tedious, you want to be able to plug in as many as you can.
Before the meeting begins, you gather up all the devices that the reporters would like to use, and attempt to set them up. You notice that some of the devices use plugs for which there is no receptacle. You wonder if these devices are from countries that didn't exist when the room was built. For some receptacles, there are several devices that use the corresponding plug. For other receptacles, there are no devices that use the corresponding plug.
In order to try to solve the problem you visit a nearby parts supply store. The store sells adapters that allow one type of plug to be used in a different type of outlet. Moreover, adapters are allowed to be plugged into other adapters. The store does not have adapters for all possible combinations of plugs and receptacles, but there is essentially an unlimited supply of the ones they do have.
Input
The input will consist of one case. The first line contains a single positive integer n (1 <= n <= 100) indicating the number of receptacles in the room. The next n lines list the receptacle types found in the room. Each receptacle type consists of a string of at most 24 alphanumeric characters. The next line contains a single positive integer m (1 <= m <= 100) indicating the number of devices you would like to plug in. Each of the next m lines lists the name of a device followed by the type of plug it uses (which is identical to the type of receptacle it requires). A device name is a string of at most 24 alphanumeric
characters. No two devices will have exactly the same name. The plug type is separated from the device name by a space. The next line contains a single positive integer k (1 <= k <= 100) indicating the number of different varieties of adapters that are available. Each of the next k lines describes a variety of adapter, giving the type of receptacle provided by the adapter, followed by a space, followed by the type of plug.
Output
A line containing a single non-negative integer indicating the smallest number of devices that cannot be plugged in.
Sample Input
4
A
B
C
D
5
laptop B
phone C
pager B
clock B
comb X
3
B X
X A
X D
Sample Output
1
Source
East Central North America 1999
#include
#include
#include
using namespace std;
int flow[510][510],dist[510],gap[510];//주의 범위
int n,m,k;
int find_path(int p, int limit = 0x3f3f3f3f)
{
if (p == n - 1) return limit;
for (int i = 0; i < n;++i)
{
if (dist[p] == dist[i] + 1 && flow[p][i] > 0)
{
int t = find_path(i, min(limit, flow[p][i]));
if (t < 0) return t;
if (t > 0)
{
flow[p][i] -= t;
flow[i][p] += t;
return t;
}
}
}
int label = n;
for (int i = 0; i < n;++i) if (flow[p][i] > 0) label = min(label, dist[i] + 1);
if (--gap[dist[p]] == 0 || dist[0] >= n) return -1;
++gap[dist[p] = label];
return 0;
}
int iSAP()
{
gap[0]=n;
int maxflow = 0,t = 0;
while ((t = find_path(0)) >= 0) maxflow += t;
return maxflow;
}
char cha[410][25];
int main()
{
memset(flow,0,sizeof(flow));
memset(gap,0,sizeof(gap));
memset(dist,0,sizeof(dist));//초기화 주의
scanf("%d",&n);
int N=n;
for(int i=1;i<=n;i++) scanf("%s",cha[i]);
scanf("%d",&m);
for(int i=1;i<=m;i++)
{
char a[25],b[25];
scanf("%s%s",a,b);
int j;
for(j=1;j<=n;j++)
if(strcmp(b,cha[j])==0) break;
if(j>n) strcpy(cha[++n],b);
flow[i][j+m]=1;
flow[0][i]=1;
}
scanf("%d",&k);
for(int i=1;i<=k;i++)
{
char a[25],b[25];
int j,jj;
scanf("%s%s",a,b);
for(j=1; j<=n; j++)
if(strcmp(a,cha[j])==0) break;
if(j>n) strcpy(cha[++n],a);
for(jj=1; jj<=n; jj++)
if(strcmp(b,cha[jj])==0) break;
if(jj>n) strcpy(cha[++n],b);
flow[j+m][jj+m]=100000000;
}
for(int j=1;j<=N;j++) flow[j+m][n+m+1]=1;
n=n+m+2;
printf("%d/n",m-iSAP());
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LINUX 시리즈(1부)UNIX는 1969년 AT&T에서 개발한 운영 체제입니다. UNIX는 다중 사용자, 다중 프로세스 운영 체제입니다. 기본적으로 사용 가능한 두 가지 기본 UNIX 버전이 있습니다. 대부분의 UNIX 버전은 이러한 버...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.