A13249 | Minimax Problem
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given $n$ arrays $a_1$ , $a_2$ , ..., $a_n$ ; each array consists of exactly $m$ integers. We denote the $y$ -th element of the $x$ -th array as $a_{x, y}$ .
You have to choose two arrays $a_i$ and $a_j$ ( $1 \le i, j \le n$ , it is possible that $i = j$ ). After that, you will obtain a new array $b$ consisting of $m$ integers, such that for every $k \in [1, m]$ $b_k = \max(a_{i, k}, a_{j, k})$ .
Your goal is to choose $i$ and $j$ so that the value of $\min \limits_{k = 1}^{m} b_k$ is maximum possible.
You have to choose two arrays $a_i$ and $a_j$ ( $1 \le i, j \le n$ , it is possible that $i = j$ ). After that, you will obtain a new array $b$ consisting of $m$ integers, such that for every $k \in [1, m]$ $b_k = \max(a_{i, k}, a_{j, k})$ .
Your goal is to choose $i$ and $j$ so that the value of $\min \limits_{k = 1}^{m} b_k$ is maximum possible.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \le n \le 3 \cdot 10^5$ , $1 \le m \le 8$ ) — the number of arrays and the number of elements in each array, respectively.
Then $n$ lines follow, the $x$ -th line contains the array $a_x$ represented by $m$ integers $a_{x, 1}$ , $a_{x, 2}$ , ..., $a_{x, m}$ ( $0 \le a_{x, y} \le 10^9$ ).
Then $n$ lines follow, the $x$ -th line contains the array $a_x$ represented by $m$ integers $a_{x, 1}$ , $a_{x, 2}$ , ..., $a_{x, m}$ ( $0 \le a_{x, y} \le 10^9$ ).
输出格式
Print two integers $i$ and $j$ ( $1 \le i, j \le n$ , it is possible that $i = j$ ) — the indices of the two arrays you have to choose so that the value of $\min \limits_{k = 1}^{m} b_k$ is maximum possible. If there are multiple answers, print any of them.
输入输出样例
输入 #1
6 5 5 0 3 1 2 1 8 9 1 3 1 2 3 4 5 9 1 0 3 7 2 3 0 6 3 6 4 1 7 0
输出 #1
1 5
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted