A10474 | Searching Rectangles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The first line of the input contains an integer $n$ ( $2<=n<=2^{16}$ ) — size of the field.
For each query an integer between $0$ and $2$ is returned — the number of initial rectangles that lie fully inside the query rectangle.
For each query an integer between $0$ and $2$ is returned — the number of initial rectangles that lie fully inside the query rectangle.
输入格式
To make a query you have to print "? $x_{1}$ $y_{1}$ $x_{2}$ $y_{2}$ " (without quotes) ( $1<=x_{1}<=x_{2}<=n$ , $1<=y_{1}<=y_{2}<=n$ ), where $(x_{1},y_{1})$ stands for the position of the bottom left cell of the query and $(x_{2},y_{2})$ stands for the up right cell of the query. You are allowed to ask no more than $200$ queries. After each query you should perform "flush" operation and read the answer.
In case you suppose you've already determined the location of two rectangles (or run out of queries) you should print "! $x_{11}$ $y_{11}$ $x_{12}$ $y_{12}$ $x_{21}$ $y_{21}$ $x_{22}$ $y_{22}$ " (without quotes), where first four integers describe the bottom left and up right cells of the first rectangle, and following four describe the corresponding cells of the second rectangle. You can print the rectangles in an arbitrary order. After you have printed the answer, print the end of the line and perform "flush". Your program should terminate immediately after it print the answer.
Interaction
To flush you can use (just after printing an integer and end-of-line):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- See the documentation for other languages.
You will get the Wrong Answer verdict if you ask more than $200$ queries, or if you print an incorrect coordinates.
You will get the Idleness Limit Exceeded verdict if you don't print anything (but you should) or if you forget about flushing the output (more info below).
Hacking.
The first line should contain an integer $n$ ( $2<=n<=2^{16}$ ).
The second line should contain four integers $x_{1}$ , $y_{1}$ , $x_{2}$ , $y_{2}$ ( $1<=x_{1}<=x_{2}<=n$ , $1<=y_{1}<=y_{2}<=n$ ) — the description of the first rectangle.
The third line contains the description of the second rectangle in the similar way.
In case you suppose you've already determined the location of two rectangles (or run out of queries) you should print "! $x_{11}$ $y_{11}$ $x_{12}$ $y_{12}$ $x_{21}$ $y_{21}$ $x_{22}$ $y_{22}$ " (without quotes), where first four integers describe the bottom left and up right cells of the first rectangle, and following four describe the corresponding cells of the second rectangle. You can print the rectangles in an arbitrary order. After you have printed the answer, print the end of the line and perform "flush". Your program should terminate immediately after it print the answer.
Interaction
To flush you can use (just after printing an integer and end-of-line):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- See the documentation for other languages.
You will get the Wrong Answer verdict if you ask more than $200$ queries, or if you print an incorrect coordinates.
You will get the Idleness Limit Exceeded verdict if you don't print anything (but you should) or if you forget about flushing the output (more info below).
Hacking.
The first line should contain an integer $n$ ( $2<=n<=2^{16}$ ).
The second line should contain four integers $x_{1}$ , $y_{1}$ , $x_{2}$ , $y_{2}$ ( $1<=x_{1}<=x_{2}<=n$ , $1<=y_{1}<=y_{2}<=n$ ) — the description of the first rectangle.
The third line contains the description of the second rectangle in the similar way.
输出格式
无
输入输出样例
输入 #1
5 2 1 0 1 1 1 0 1
输出 #1
? 1 1 5 5 ? 1 1 3 3 ? 1 1 3 1 ? 2 2 2 2 ? 3 3 5 5 ? 3 3 3 5 ? 3 3 3 4 ? 3 4 3 5 ! 2 2 2 2 3 4 3 5
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted