博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zoj1455
阅读量:5060 次
发布时间:2019-06-12

本文共 3896 字,大约阅读时间需要 12 分钟。

Schedule Problem

Time Limit: 2 Seconds      
Memory Limit: 65536 KB      
Special Judge

A project can be divided into several parts. Each part should be completed continuously. This means if a part should take 3 days, we should use a continuous 3 days do complete it. There are four types of constrains among these parts which are FAS, FAF, SAF and SAS. A constrain between parts is FAS if the first one should finish after the second one started. FAF is finish after finish. SAF is start after finish, and SAS is start after start. Assume there are enough people involved in the projects, which means we can do any number of parts concurrently. You are to write a program to give a schedule of a given project, which has the shortest time.

Input
The input file consists a sequences of projects.

Each project consists the following lines:

the count number of parts (one line) (0 for end of input)

times should be taken to complete these parts, each time occupies one line
a list of FAS, FAF, SAF or SAS and two part number indicates a constrain of the two parts
a line only contains a '#' indicates the end of a project

 

Output

Output should be a list of lines, each line includes a part number and the time it should start. Time should be a non-negative integer, and the start time of first part should be 0. If there is no answer for the problem, you should give a non-line output containing "impossible".

A blank line should appear following the output for each project.

 

Sample Input

3
2
3
4
SAF 2 1
FAF 3 2
#
3
1
1
1
SAF 2 1
SAF 3 2
SAF 1 3
#
0

Sample Output
Case 1:
1 0
2 2
3 1

Case 2:

impossible

 

#include 
#include
#include
using namespace std;#define inf 100000000#define maxn 50005int sum[maxn], dist[maxn], n, time[maxn], num, head[maxn];bool flag[maxn];struct Node{ int u,v,w,next;}node[maxn];void add(int u,int v,int w){ node[num].v = v; node[num].w = w; node[num].next = head[u]; head[u] = num++;}int SPFA(int s){ int i,v,w,u; for(i=0;i<=n;i++) { sum[i] = 0; dist[i] = -inf; flag[i] = false; } queue
q; q.push(s); dist[s] = 0; ++sum[s]; while(!q.empty()) { u = q.front(); q.pop(); flag[u] = false; for(i=head[u];~i;i=node[i].next) { v = node[i].v; w = node[i].w; if(dist[u]!=inf && dist[v] < dist[u] + w) { dist[v] = dist[u] + w; if(!flag[v]) { q.push(v); flag[v] = true; if(++sum[v]>n) { return 0; } } } } } return 1;}int main(){ int h=1; char str[10]; int i,x,y; int temp ; while(scanf("%d",&n)!=EOF && n) { memset(head,-1,sizeof(head)); num=0; for(i=1;i<=n;i++) { scanf("%d",&time[i]); } while(scanf("%s",str) && str[0]!='#') { scanf("%d %d",&x,&y); if(strcmp(str, "FAS") == 0) { add(y, x, -time[x]); } else if(strcmp(str,"FAF") == 0) { add(y, x, time[y] - time[x]); } else if(strcmp(str,"SAF") == 0) { add(y, x, time[y]); } else { add(y, x, 0); } } for( i = 1; i <= n; i++) { add(0, i, 0); } temp = SPFA(0); printf("Case %d:\n",h++); if(temp) { for(i=1;i<=n;i++) { printf("%d %d\n",i,dist[i]); } } else printf("impossible\n"); printf("\n"); } return 0;}

 

转载于:https://www.cnblogs.com/Deng1185246160/p/3237770.html

你可能感兴趣的文章
IOS-图片操作集合
查看>>
Android bitmap图片处理
查看>>
Android应用程序进程启动过程的源代码分析
查看>>
adb logcat 命令行用法
查看>>
Redis学习手册(Key操作命令)
查看>>
模板统计LA 4670 Dominating Patterns
查看>>
泛型第23条:请不要在新代码中使用原生态类型
查看>>
非对称加密
查看>>
bzoj 3413: 匹配
查看>>
从下周开始就要采用网上记录值班日志了
查看>>
在qq中可以使用添加标签功能
查看>>
eclipse 自定义布局
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
【AppScan心得】IBM Rational AppScan 无法记录登录序列
查看>>
[翻译] USING GIT IN XCODE [4] 在XCODE中使用GIT[4]
查看>>
简化通知中心的使用
查看>>
SpringMVC的@Validated校验注解使用方法
查看>>
Python之os模块
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
【蓝桥杯】PREV-21 回文数字
查看>>