A11605 | Constructing Tests
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's denote a $m$ -free matrix as a binary (that is, consisting of only $1$ 's and $0$ 's) matrix such that every square submatrix of size $m×m$ of this matrix contains at least one zero.
Consider the following problem:
You are given two integers $n$ and $m$ . You have to construct an $m$ -free square matrix of size $n×n$ such that the number of $1$ 's in this matrix is maximum possible. Print the maximum possible number of $1$ 's in such matrix.
You don't have to solve this problem. Instead, you have to construct a few tests for it.
You will be given $t$ numbers $x_{1}$ , $x_{2}$ , ..., $x_{t}$ . For every , find two integers $n_{i}$ and $m_{i}$ ( $n_{i}>=m_{i}$ ) such that the answer for the aforementioned problem is exactly $x_{i}$ if we set $n=n_{i}$ and $m=m_{i}$ .
Consider the following problem:
You are given two integers $n$ and $m$ . You have to construct an $m$ -free square matrix of size $n×n$ such that the number of $1$ 's in this matrix is maximum possible. Print the maximum possible number of $1$ 's in such matrix.
You don't have to solve this problem. Instead, you have to construct a few tests for it.
You will be given $t$ numbers $x_{1}$ , $x_{2}$ , ..., $x_{t}$ . For every , find two integers $n_{i}$ and $m_{i}$ ( $n_{i}>=m_{i}$ ) such that the answer for the aforementioned problem is exactly $x_{i}$ if we set $n=n_{i}$ and $m=m_{i}$ .
输入格式
The first line contains one integer $t$ ( $1<=t<=100$ ) — the number of tests you have to construct.
Then $t$ lines follow, $i$ -th line containing one integer $x_{i}$ ( $0<=x_{i}<=10^{9}$ ).
Note that in hacks you have to set $t=1$ .
Then $t$ lines follow, $i$ -th line containing one integer $x_{i}$ ( $0<=x_{i}<=10^{9}$ ).
Note that in hacks you have to set $t=1$ .
输出格式
For each test you have to construct, output two positive numbers $n_{i}$ and $m_{i}$ ( $1<=m_{i}<=n_{i}<=10^{9}$ ) such that the maximum number of $1$ 's in a $m_{i}$ -free $n_{i}×n_{i}$ matrix is exactly $x_{i}$ . If there are multiple solutions, you may output any of them; and if this is impossible to construct a test, output a single integer $-1$ .
输入输出样例
输入 #1
3 21 0 1
输出 #1
5 2 1 1 -1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted