A10245 | Guess the Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Bob has a permutation of integers from $1$ to $n$ . Denote this permutation as $p$ . The $i$ -th element of $p$ will be denoted as $p_{i}$ . For all pairs of distinct integers $i,j$ between $1$ and $n$ , he wrote the number $a_{i,j}=min(p_{i},p_{j})$ . He writes $a_{i,i}=0$ for all integer $i$ from $1$ to $n$ .
Bob gave you all the values of $a_{i,j}$ that he wrote down. Your job is to reconstruct any permutation that could have generated these values. The input will be formed so that it is guaranteed that there is at least one solution that is consistent with the information given.
Bob gave you all the values of $a_{i,j}$ that he wrote down. Your job is to reconstruct any permutation that could have generated these values. The input will be formed so that it is guaranteed that there is at least one solution that is consistent with the information given.
输入格式
The first line of the input will contain a single integer $n$ ( $2<=n<=50$ ).
The next $n$ lines will contain the values of $a_{i,j}$ . The $j$ -th number on the $i$ -th line will represent $a_{i,j}$ . The $i$ -th number on the $i$ -th line will be $0$ . It's guaranteed that $a_{i,j}=a_{j,i}$ and there is at least one solution consistent with the information given.
The next $n$ lines will contain the values of $a_{i,j}$ . The $j$ -th number on the $i$ -th line will represent $a_{i,j}$ . The $i$ -th number on the $i$ -th line will be $0$ . It's guaranteed that $a_{i,j}=a_{j,i}$ and there is at least one solution consistent with the information given.
输出格式
Print $n$ space separated integers, which represents a permutation that could have generated these values. If there are multiple possible solutions, print any of them.
输入输出样例
输入 #1
2 0 1 1 0
输出 #1
2 1
输入 #2
5 0 2 2 1 2 2 0 4 1 3 2 4 0 1 3 1 1 1 0 1 2 3 3 1 0
输出 #2
2 5 4 1 3
In the first case, the answer can be ${1,2}$ or ${2,1}$ .
In the second case, another possible answer is ${2,4,5,1,3}$ .
In the second case, another possible answer is ${2,4,5,1,3}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted