A11456 | Berland Army
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ military men in the Berland army. Some of them have given orders to other military men by now. Given $m$ pairs ( $x_{i}$ , $y_{i}$ ), meaning that the military man $x_{i}$ gave the $i$ -th order to another military man $y_{i}$ .
It is time for reform! The Berland Ministry of Defence plans to introduce ranks in the Berland army. Each military man should be assigned a rank — integer number between $1$ and $k$ , inclusive. Some of them have been already assigned a rank, but the rest of them should get a rank soon.
Help the ministry to assign ranks to the rest of the army so that:
- for each of $m$ orders it is true that the rank of a person giving the order (military man $x_{i}$ ) is strictly greater than the rank of a person receiving the order (military man $y_{i}$ );
- for each rank from $1$ to $k$ there is at least one military man with this rank.
It is time for reform! The Berland Ministry of Defence plans to introduce ranks in the Berland army. Each military man should be assigned a rank — integer number between $1$ and $k$ , inclusive. Some of them have been already assigned a rank, but the rest of them should get a rank soon.
Help the ministry to assign ranks to the rest of the army so that:
- for each of $m$ orders it is true that the rank of a person giving the order (military man $x_{i}$ ) is strictly greater than the rank of a person receiving the order (military man $y_{i}$ );
- for each rank from $1$ to $k$ there is at least one military man with this rank.
输入格式
The first line contains three integers $n$ , $m$ and $k$ ( $1<=n<=2·10^{5}$ , $0<=m<=2·10^{5}$ , $1<=k<=2·10^{5}$ ) — number of military men in the Berland army, number of orders and number of ranks.
The second line contains $n$ integers $r_{1},r_{2},...,r_{n}$ , where $r_{i}>0$ (in this case $1<=r_{i}<=k$ ) means that the $i$ -th military man has been already assigned the rank $r_{i}$ ; $r_{i}=0$ means the $i$ -th military man doesn't have a rank yet.
The following $m$ lines contain orders one per line. Each order is described with a line containing two integers $x_{i}$ , $y_{i}$ ( $1<=x_{i},y_{i}<=n$ , $x_{i}≠y_{i}$ ). This line means that the $i$ -th order was given by the military man $x_{i}$ to the military man $y_{i}$ . For each pair $(x,y)$ of military men there could be several orders from $x$ to $y$ .
The second line contains $n$ integers $r_{1},r_{2},...,r_{n}$ , where $r_{i}>0$ (in this case $1<=r_{i}<=k$ ) means that the $i$ -th military man has been already assigned the rank $r_{i}$ ; $r_{i}=0$ means the $i$ -th military man doesn't have a rank yet.
The following $m$ lines contain orders one per line. Each order is described with a line containing two integers $x_{i}$ , $y_{i}$ ( $1<=x_{i},y_{i}<=n$ , $x_{i}≠y_{i}$ ). This line means that the $i$ -th order was given by the military man $x_{i}$ to the military man $y_{i}$ . For each pair $(x,y)$ of military men there could be several orders from $x$ to $y$ .
输出格式
Print $n$ integers, where the $i$ -th number is the rank of the $i$ -th military man. If there are many solutions, print any of them.
If there is no solution, print the only number -1.
If there is no solution, print the only number -1.
输入输出样例
输入 #1
5 3 3 0 3 0 0 2 2 4 3 4 3 5
输出 #1
1 3 3 2 2
输入 #2
7 6 5 0 4 5 4 1 0 0 6 1 3 6 3 1 7 5 7 1 7 4
输出 #2
2 4 5 4 1 3 5
输入 #3
2 2 2 2 1 1 2 2 1
输出 #3
-1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted