A11118 | Interactive LowerBound
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is an interactive problem.
You are given a sorted in increasing order singly linked list. You should find the minimum integer in the list which is greater than or equal to $x$ .
More formally, there is a singly liked list built on an array of $n$ elements. Element with index $i$ contains two integers: $value_{i}$ is the integer value in this element, and $next_{i}$ that is the index of the next element of the singly linked list (or -1, if the current element is the last). The list is sorted, i.e. if $next_{i}≠-1$ , then $value_{nexti}>value_{i}$ .
You are given the number of elements in the list $n$ , the index of the first element $start$ , and the integer $x$ .
You can make up to $2000$ queries of the following two types:
- ? i ( $1<=i<=n$ ) — ask the values $value_{i}$ and $next_{i}$ ,
- ! ans — give the answer for the problem: the minimum integer, greater than or equal to $x$ , or ! -1, if there are no such integers. Your program should terminate after this query.
Write a program that solves this problem.
You are given a sorted in increasing order singly linked list. You should find the minimum integer in the list which is greater than or equal to $x$ .
More formally, there is a singly liked list built on an array of $n$ elements. Element with index $i$ contains two integers: $value_{i}$ is the integer value in this element, and $next_{i}$ that is the index of the next element of the singly linked list (or -1, if the current element is the last). The list is sorted, i.e. if $next_{i}≠-1$ , then $value_{nexti}>value_{i}$ .
You are given the number of elements in the list $n$ , the index of the first element $start$ , and the integer $x$ .
You can make up to $2000$ queries of the following two types:
- ? i ( $1<=i<=n$ ) — ask the values $value_{i}$ and $next_{i}$ ,
- ! ans — give the answer for the problem: the minimum integer, greater than or equal to $x$ , or ! -1, if there are no such integers. Your program should terminate after this query.
Write a program that solves this problem.
输入格式
The first line contains three integers $n$ , $start$ , $x$ ( $1<=n<=50000$ , $1<=start<=n$ , $0<=x<=10^{9}$ ) — the number of elements in the list, the index of the first element and the integer $x$ .
输出格式
To print the answer for the problem, print ! ans, where ans is the minimum integer in the list greater than or equal to $x$ , or -1, if there is no such integer.
Interaction
To make a query of the first type, print ? i ( $1<=i<=n$ ), where i is the index of element you want to know information about.
After each query of type ? read two integers $value_{i}$ and $next_{i}$ ( $0<=value_{i}<=10^{9}$ , $-1<=next_{i}<=n$ , $next_{i}≠0$ ).
It is guaranteed that if $next_{i}≠-1$ , then $value_{nexti}>value_{i}$ , and that the array values give a valid singly linked list with $start$ being the first element.
Note that you can't ask more than $1999$ queries of the type ?.
If $next_{i}=-1$ and $value_{i}=-1$ , then it means that you asked more queries than allowed, or asked an invalid query. Your program should immediately terminate (for example, by calling exit(0)). You will receive "Wrong Answer", it means that you asked more queries than allowed, or asked an invalid query. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.
Your solution will get "Idleness Limit Exceeded", if you don't print anything or forget to flush the output, including the final answer.
To flush you can use (just after printing a query and line end):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- For other languages see documentation.
Hacks format
For hacks, use the following format:
In the first line print three integers $n$ , $start$ , $x$ ( $1<=n<=50000$ , $1<=start<=n$ , $0<=x<=10^{9}$ ).
In the next $n$ lines print the description of the elements of the list: in the $i$ -th line print two integers $value_{i}$ and $next_{i}$ ( $0<=value_{i}<=10^{9}$ , $-1<=next_{i}<=n$ , $next_{i}≠0$ ).
The printed structure should be a valid singly linked list. In particular, it should be possible to reach all elements from $start$ by following links $next_{i}$ , and the last element $end$ should have -1 in the $next_{end}$ .
Interaction
To make a query of the first type, print ? i ( $1<=i<=n$ ), where i is the index of element you want to know information about.
After each query of type ? read two integers $value_{i}$ and $next_{i}$ ( $0<=value_{i}<=10^{9}$ , $-1<=next_{i}<=n$ , $next_{i}≠0$ ).
It is guaranteed that if $next_{i}≠-1$ , then $value_{nexti}>value_{i}$ , and that the array values give a valid singly linked list with $start$ being the first element.
Note that you can't ask more than $1999$ queries of the type ?.
If $next_{i}=-1$ and $value_{i}=-1$ , then it means that you asked more queries than allowed, or asked an invalid query. Your program should immediately terminate (for example, by calling exit(0)). You will receive "Wrong Answer", it means that you asked more queries than allowed, or asked an invalid query. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.
Your solution will get "Idleness Limit Exceeded", if you don't print anything or forget to flush the output, including the final answer.
To flush you can use (just after printing a query and line end):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- For other languages see documentation.
Hacks format
For hacks, use the following format:
In the first line print three integers $n$ , $start$ , $x$ ( $1<=n<=50000$ , $1<=start<=n$ , $0<=x<=10^{9}$ ).
In the next $n$ lines print the description of the elements of the list: in the $i$ -th line print two integers $value_{i}$ and $next_{i}$ ( $0<=value_{i}<=10^{9}$ , $-1<=next_{i}<=n$ , $next_{i}≠0$ ).
The printed structure should be a valid singly linked list. In particular, it should be possible to reach all elements from $start$ by following links $next_{i}$ , and the last element $end$ should have -1 in the $next_{end}$ .
输入输出样例
输入 #1
5 3 80 97 -1 58 5 16 2 81 1 79 4
输出 #1
? 1 ? 2 ? 3 ? 4 ? 5 ! 81
You can read more about singly linked list by the following link: [https://en.wikipedia.org/wiki/Linked\_list#Singly\_linked\_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)
The illustration for the first sample case. Start and finish elements are marked dark. 
The illustration for the first sample case. Start and finish elements are marked dark. 
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted