2015-2016 ACM-ICPC Southwestern Europe Regional Contest (SWERC 15) A.Promotions

Promotions

题目描述

The Fair Inc. administration decided to promote the best
employees and limited the number of promotions to a fixed
interval [A, B]. The directors compared the employees’
performance and their evaluations resulted in a consistent
precedence relation among employees, which has to be respected by promotions. This means that, for every pair of
employees x and y, if x outperformed y, then y may be
promoted only if x is promoted.
In order to understand whether the data collected so far is
enough for ensuring fairness, the executive chairman wants to know:
• How many employees will certainly be promoted in the
interval endpoints (i.e., if the number of promotions is
A and if the number of promotions is B).
• How many employees have no possibility of being
promoted (even if the number of promotions is B).
Consider the example depicted in the figure. There are seven
employees and eight precedence rules. An arrow from an
employee x to an employee y means that x outperformed y. The number of promotions is limited to the interval [3, 4]. Therefore:
• If there are only three promotions, the promoted employees must be:
– either Anne, Bob and Greg,
– or Anne, Eve and Greg.
In this case, two employees (Anne and Greg) will certainly be promoted. Notice that, with the current information, Bob and Eve may or may not win a promotion.
• If there are four promotions, the promoted employees have to be:
– Anne, Bob, Eve and Greg.
So, with four promotions, four employees (Anne, Bob, Eve and Greg) will certainly
be promoted and three employees (Cora, Dan and Fred) have no possibility of being promoted.

Write a program that, given the interval of the number of promotions, the set of employees
and the precedence relation among them, computes, for each of the interval endpoints, the
number of employees that will certainly be promoted, and the number of employees that
have no possibility of being promoted.
The precedence relation is consistent in the sense that, if an employee x outperformed an
employee y, y did not outperform (directly or indirectly) x.

输入描述

The first line of the input has four space separated integers: A, B, E, and P. A and B are the interval endpoints, E is the number of employees and P is the number of precedence rules. Employees are identified by integers, ranging from 0 to E − 1.
Each of the following P lines contains two distinct space separated integers, x and y, which indicate that employee x outperformed employee y.

输出描述

The output consists of three lines. The first line contains the number of employees that will certainly be promoted if there are A promotions. The second line contains the number of employees that will certainly be promoted if there are B promotions. The third line contains the number of employees that have no possibility of being promoted (even if there are B promotions).

数据规模与约定

1 ≤ A < B < E Interval endpoints.
2 ≤ E ≤ 5 000 Number of employees.
1 ≤ P ≤ 20 000 Number of precedence rules.

样例输入

3 4 7 8
0 4
1 2
1 5
5 2
6 4
0 1
2 3
4 5

样例输出

2
4
3

原题

CF——传送门

代码

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;vector<int> Next[5006]; // 正向图,记录每个点的后继节点
vector<int> Pre[5006];  // 反向图,记录每个点的前驱节点bool vis[5006]; // 记录该节点是否已经访问过int dfs_next(int v)
{int res = 0;for (int i = 0; i < Next[v].size(); i++){int u = Next[v][i]; // 后继节点if (vis[u])         // 若已访问则跳过continue;vis[u] = 1; // 标记为已访问res += dfs_next(u);res++; // 加上该节点本身}return res;
}int dfs_pre(int v)
{int res = 0;for (int i = 0; i < Pre[v].size(); i++){int u = Pre[v][i]; // 前驱节点if (vis[u])        // 若已访问则跳过continue;vis[u] = 1; // 标记为已访问res += dfs_pre(u);res++; // 加上该节点本身}return res;
}int main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int a, b, n, m;cin >> a >> b >> n >> m;int x, y;for (int i = 1; i <= m; i++){cin >> x >> y;Next[x].push_back(y);Pre[y].push_back(x);}int ans1 = 0;               // 对于晋升a个节点,ans1为确定晋升的节点数量int ans2 = 0;               // 对于晋升b个节点,ans2为确定晋升的节点数量for (int i = 0; i < n; i++) // 第i个节点{memset(vis, 0, sizeof(vis)); // 清空标记已访问的数组int num = dfs_next(i);       // 在i节点后面的节点数量if (num >= n - a)            // 若在该节点后面的节点数量大于等于不晋升的节点数量,那该节点必须晋升ans1++;if (num >= n - b) // 若在该节点后面的节点数量大于等于不晋升的节点数量,那该节点必须晋升ans2++;}int ans3 = 0;               // 对于晋升b个节点,ans3为确定不会晋升的节点数量for (int i = 0; i < n; i++) // 第i个节点{memset(vis, 0, sizeof(vis)); // 清空标记已访问的数组int num = dfs_pre(i);        // 在i节点前面的节点数量if (num >= b)                // 若已有b个及以上的节点在其前面,那其必不会晋升ans3++;}cout << ans1 << '\n';cout << ans2 << '\n';cout << ans3 << '\n';return 0;
}

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

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

相关文章

拯救者杯OPENAIGC开发者大赛城市巡回沙龙,苏州站报名开启!

由联想拯救者、AIGC开放社区、英特尔联合主办的“AI生成未来第二届拯救者杯OPENAIGC开发者大赛”自上线以来&#xff0c;吸引了广大开发者的热情参与。 为了向技术开发者、业务人员、高校学生、以及个体创业人员等参赛者们提供更充分的帮助与支持&#xff0c;AIGC开放社区特别…

vue 输入框@人功能组件,支持复制粘贴

文章目录 概要整体架构流程技术细节小结自定义输入框代码外部调用示例 概要 开发任务系统中&#xff0c;业务需求&#xff1a;需要在任务描述、评论等地方支持人员功能&#xff0c;可以将任务外部人员添加至当前任务中。 功能&#xff1a;1、支持输入展开下拉&#xff0c;可通…

Linux:进程通信(二)信号的保存

目录 一、信号的处理是否是立即处理的&#xff1f; 二、信号如何保存 1、阻塞、未决、递达 2、信号集 3、信号集操作函数 4、sigprocmask函数 5、sigpending 函数 上篇文章我们讲解了信号的产生&#xff1a;Linux&#xff1a;进程信号&#xff08;一&#xff09;信号的产…

ResponseHttp

文章目录 HTTP响应详解使用抓包查看响应报文协议内容 Response对象Response继承体系Response设置响应数据功能介绍Response请求重定向概述实现方式重定向特点 请求重定向和请求转发比较路径问题Response响应字符数据步骤实现 Response响应字节数据步骤实现 HTTP响应详解 使用抓…

「AIGC」深度学习

深度学习是机器学习的一个子领域&#xff0c;它基于人工神经网络的学习算法。深度学习在图像和语音识别、自然语言处理、医学图像分析、药物发现、自动驾驶汽车等领域取得了显著的进展。以下是围绕深度学习的几个关键主题的阐述。 学习路线 基础数学&#xff1a; 了解线性代数…

适用于 Windows 的免费恢复软件:前 7 个解决方案对比

Windows计算机上的数据恢复可能是一项简单或艰巨的任务&#xff0c;具体取决于您使用的软件。 软件的质量及其功能将决定将恢复多少数据、文件的完整性、扫描存储的深度以及整个过程在时间和恢复成功率方面的整体效率。 如果您想了解一些适用于 Windows的最佳免费取消删除软件…

Adobe Illustrator 2024 for Mac:矢量图形设计软件

Adobe Illustrator 2024 for Mac是一款专为Mac用户设计的行业标准矢量图形设计软件。该软件以其卓越的性能和丰富的功能&#xff0c;为设计师和艺术家们提供了一个全新的创意空间。 作为一款矢量图形软件&#xff0c;Adobe Illustrator 2024 for Mac支持创建高质量的矢量图形&a…

数据结构===图

文章目录 概要图的组成无向图有向图带权图 存储邻接矩阵邻接表 图的代码小结 概要 图是一种复杂的数据结构 图包括顶点&#xff0c;边。图的分类有无向图&#xff0c;有向图&#xff0c;带权图。 按照存储有邻接矩阵&#xff0c;邻接表。 图的组成 图有顶点和边组成。 图有…

工厂模式(Factory Pattern)

简介 工厂模式属于创造型模式&#xff0c;它提供了一种创建对象的最佳方式。 创建对象时&#xff0c;无需指定创建的具体类。 它在创建时提供了一种封装机制&#xff0c;将实际创建的代码与使用代码分离。 主要用于解决接口选择问题&#xff1b;通过让其子类实现工厂&#…

如何利用工作流自定义一个AI智能体

选择平台 目前已经有不少大模型平台都提供自定义智能体的功能&#xff0c;比如 百度的文心 https://agents.baidu.com/ 阿里的百炼平台 https://bailian.console.aliyun.com/。 今天再来介绍一个平台扣子&#xff08;https://www.coze.cn/&#xff09;&#xff0c;扣子是…

银川服务外包有邦芒 值得信赖的专业人力资源管理伙伴

银川邦芒致力于为企业提供全方位的服务外包解决方案&#xff0c;助力企业优化业务流程、降低成本、提高效率&#xff0c;并在激烈的市场竞争中脱颖而出。我们专注于将您的非核心业务外包给专业团队&#xff0c;让您能够更专注于核心业务的发展&#xff0c;同时享受高效、低风险…

翔云优配官网美股市场分析问界回应M7事故四大疑问

问界再次新M7 Plus山西高速事故。 4月26日下午,山西运城曾有一辆问界新M7 Plus车辆(以下简称“事故车辆”)在高速行驶时和一辆高速洒水车追尾,碰撞后车辆起火,造成三人遇难,该事故引发了广泛关注。 翔云优配以其专业的服务和较低的管理费用在市场中受到不少关注。该平台提供了…

效率跨越式提升的工农业对机器人专业的需求

需求 需要用人的地方一定会逐步收缩。 原来需要人的地方也会逐步被机器人取代。 机器人这个专业最强的悖论就是可以部分取代人。 此处&#xff1a;用人的地方是指“工农业”&#xff0c;包括工业和农业。 机器人工程行业算制造业吗 机器人工程终身学习和工作计划 趋势 工匠…

安卓动态加载view

目录 前言一、addview1.1 addView 的重载方法1.2 在 LinearLayout 中的使用1.2.1 addView(View child)方法的分析&#xff1a;1.2.2 addView(View child, int index)方法的分析&#xff1a;1.2.3 小结 1.3 在 RelativeLayout 中的使用 二、addContentview2.1 测试 12.2 测试 22…

华为OD机试【最大N个数与最小N个数的和】(java)(100分)

1、题目描述 给定一个数组&#xff0c;编写一个函数来计算它的最大N个数与最小N个数的和&#xff0c;需要对数组进行去重。 说明&#xff1a; ● 数组中数字范围[0, 1000] ● 最大N个数与最小N个数不能有重叠&#xff0c;如有重叠&#xff0c;输入非法返回-1 ● 输入非法返回-…

【解决方案】Can‘t exec “locale”: No such file or directory

【解决方案】Cant exec “locale”: No such file or directory 还可能出现的错误&#xff1a; 1. 报错原因&#xff1a; 缺少ldconfig 2. 解决方案&#xff1a; sudo apt-get download libc-bin dpkg -x libc-bin*.deb unpackdir/ sudo cp unpackdir/sbin/ldconfig /sbin/ s…

明星中药企业系列洞察(一)丨官宣提价后股价涨幅近15%,百年老字号佛慈制药如何焕发力量?

近日&#xff0c;佛慈制药发布公告称&#xff0c;鉴于原材料以及生产成本上涨等原因&#xff0c;公司对主营中成药产品的出厂价进行调整&#xff0c;平均提价幅度为9%。提价消息释出后&#xff0c;资本市场给出了态度&#xff1a;佛慈制药股价连续两天累计上涨近15%。佛慈制药近…

Docker安装部署一本通:从Linux到Windows,全面覆盖!(网络资源精选)

文章目录 📖 介绍 📖🏡 说明 🏡⚓️ 相关链接 ⚓️📖 介绍 📖 随着容器技术的飞速发展,Docker已成为现代软件开发和运维不可或缺的工具。然而,不同平台下的Docker安装部署方式各异,这常常让初学者感到困惑。本文将为您详细梳理各平台下Docker的安装部署方法,帮…

组件通信-(父子组件通信)

目录 一、什么是组件通信 二、组件关系的分类 三、组件通信解决方案 四、父传子 五、子传父 一、什么是组件通信 组件通信&#xff0c;就是指组件与组件之间的数据传递。组件的数据是独立的&#xff0c;无法直接访问其他组件的数据。如果想使用其他组件的数据&#xff0c;…