2024 Jiangsu Collegiate Programming Contest C. Radio Direction Finding 题解 交互 二分

Radio Direction Finding

题目描述

This is an interactive problem.

Radio direction finding, also known as radio orienteering or radio fox hunting, is a sport that combines radio technology with outdoor navigation. Participants use specialized receivers to locate hidden radio transmitters, testing their sense of direction and radio operation skills.

A university offers a PE course in radio direction finding. During the final exam, the teacher takes the students to a local tourist attraction. The map of the attraction can be considered as a cycle of n n n points ( n n n is an odd number), numbered clockwise as 1 , 2 , … , n 1,2,\ldots,n 1,2,,n. The teacher has previously buried two transmitters at two different points and given you a radio receiver.

This receiver is special; each time it receives a signal, you need to manually press a button on the receiver, and then the receiver will tell you the sum of the shortest distances from these two transmitters to your current location (distance is defined as the number of edges traversed). The passing criterion for the final exam is to find the positions of these two transmitters using the receiver no more than 40 40 40 times.

Now, please write an interactive program to successfully pass the final exam.

交互

First, read a positive integer T T T ( 1 ≤ T ≤ 1 0 3 1 \le T \le 10^3 1T103) from the standard input, indicating the number of test cases.

For each test case, first read a positive integer n n n ( 3 ≤ n ≤ 1 0 9 3 \le n \le 10^9 3n109, and n n n is odd) from the standard input, indicating the number of points in the cycle.

Then, start the interaction process. Each time you interact, you can output the following two types of data to the standard output:

  • ? x: Indicates that you are using the receiver at point x x x, and then your program needs to read an integer d i s t dist dist from the standard input, indicating the sum of the shortest distances from the two transmitters to point x x x. You need to ensure that 1 ≤ x ≤ n 1 \le x \le n 1xn.
    • For each set of data, the ? x operation should not exceed 40 40 40 times. If you inquire more than the specified number of times, the interactor will immediately end and you will receive a “Wrong Answer” verdict.
  • ! x y: Indicates your answer, i.e., the points where the two transmitters are located (order does not matter) are at x x x and y y y. In this case:
    • If your output format is correct and the answer is correct, the interactor will immediately move on to the next test case;
    • Otherwise, if your output format is incorrect or the answer is incorrect, the interactor will immediately end and you will receive a “Wrong Answer” verdict.

提示

Each output needs to include a line break and flush the buffer, otherwise you may get unexpected results other than the correct answer. To flush the buffer, you can:

  • For C or C++, use fflush(stdout) or cout.flush().
  • For Java, use System.out.flush().
  • For Python, use stdout.flush().

题目链接

Codeforces——传送门

思路&代码

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
typedef long long ll;int n; // 注意题目要求n为奇数,事实上n为偶数是无解的int normal(int a) // 将值转化为1~n之间的数,使代码更简洁
{a--;if (a < 0)a += n;a %= n;return a + 1;
}int query(int a) // 询问当前点到两个隐藏点的最短路长度之和
{cout << '?' << ' ' << normal(a) << '\n';cout.flush(); // 见题目所给提示int res;cin >> res;return res;
}int other(int a) // 已知一个隐藏点a的位置,返回另一个隐藏点b的位置
{int dis = query(a);              // 先找到两个隐藏点之间的距离if (query(normal(a - 1)) == dis) // 然后判断另一个点在逆时针方向还是顺时针方向return a - dis;elsereturn a + dis;
}void output(int a) // 输出答案
{int b = other(normal(a));cout << '!' << ' ' << normal(a) << ' ' << normal(b) << '\n';cout.flush(); // 见题目所给提示return;
}int main()
{ios::sync_with_stdio(0);cin.tie(0);int t;cin >> t;while (t--){cin >> n;int q1 = query(1), q2 = query(2); // 先询问1和2两个相邻点int dif = q2 - q1;switch (dif){case 0:{int l = 1, r = n / 2; // 整个环的一半中一定有询问的值与q1不相同的点while (l < r)         // 二分第一个询问值与q1不相同的点,这个点一定是隐藏点或者隐藏点的对称点{int mid = (l + r + 1) >> 1;if (query(mid + 1) == q1)l = mid;elser = mid - 1;}// l+1为二分得到的点if (q1 <= n / 2) // 若点1在两个隐藏点为端点的劣弧上,则二分得到的点为隐藏点output(l + 1);else // 否则二分得到的点为隐藏点的对称点{int x = l + 1 + (n + 1) / 2; // 再作一下对称即可得到隐藏点output(x);}}break;// 下面四种情况只需先求出两隐藏点距离dis,然后计算出一个隐藏点位置即可case 1:{int dis = n - q2;int x = 1 - (q1 - dis) / 2;output(x);}break;case -1:{int dis = n - q1;int x = 2 + (q2 - dis) / 2;output(x);}break;case 2:{int dis = query(2 - q2 / 2);int x = 2 - (q2 - dis) / 2;output(x);}break;case -2:{int dis = query(1 + q1 / 2);int x = 1 + (q1 - dis) / 2;output(x);}break;default:cout << "error\n"; // 正常输入输出下不会执行该行代码break;}}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/32025.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java面试题:对比不同的垃圾收集器(如Serial、Parallel、CMS、G1)及其适用场景

Java虚拟机&#xff08;JVM&#xff09;提供了多种垃圾收集器&#xff0c;每种垃圾收集器在性能和适用场景上各有不同。以下是对几种常见垃圾收集器&#xff08;Serial、Parallel、CMS、G1&#xff09;的对比及其适用场景的详细介绍&#xff1a; 1. Serial 垃圾收集器 Serial…

品牌价值超1592亿,九牧是如何炼成“六边形战士”?

作者 | 吉羽 来源 | 洞见新研社 经历了多年高速发展的中国市场开始慢慢减速&#xff0c;消费者正变得越来越“挑剔”&#xff0c;在信息爆炸的今天&#xff0c;企业面临“需求”与“流量”的双重考验。 市场凭什么记住你&#xff1f;选择你&#xff1f; 答案只有一个&#x…

关于飞浆文字识别技术的运用

飞桨PaddlePaddle-源于产业实践的开源深度学习平台&#xff0c;有关文章可以在此进行查询 飞桨&#xff08;PaddlePaddle&#xff09;是一个由百度开源的深度学习平台&#xff0c;它提供了丰富的机器学习算法库&#xff0c;支持多种深度学习模型的构建、训练和部署。飞桨平台具…

【漏洞复现】万户-ezOFFICE download_ftp.jsp 任意文件下载漏洞

免责声明&#xff1a; 本文内容旨在提供有关特定漏洞或安全漏洞的信息&#xff0c;以帮助用户更好地了解可能存在的风险。公布此类信息的目的在于促进网络安全意识和技术进步&#xff0c;并非出于任何恶意目的。阅读者应该明白&#xff0c;在利用本文提到的漏洞信息或进行相关测…

[项目名称]项目介绍、代码解释及推荐理由

项目介绍 ----  [项目介绍文字描述&#xff0c;如果需要&#xff0c;可引入代码进行说明]  代码解释 ----  [详细解释代码&#xff0c;针对关键部分进行分析]  项目地址 ----  请查看[gitcode链接]中的项目&#xff1a;https://gitcode.com/[你的项目地址]  推荐理…

Java面试题:详细描述Java内存模型中的各个内存区域,以及它们的作用

Java内存模型&#xff08;Java Memory Model&#xff0c;JMM&#xff09;定义了Java程序中各种变量&#xff08;尤其是共享变量&#xff09;的访问规则和可见性&#xff0c;规定了不同线程之间如何通过内存进行交互。Java内存模型中的各个内存区域如下&#xff1a; 1. 堆&…

基于51单片机计步器—无线蓝牙APP上传

基于51单片机计步器设计 &#xff08;程序&#xff0b;原理图&#xff0b;设计报告&#xff09; 功能介绍 具体功能&#xff1a; 本设计由STC89C52单片机最小系统ADXL345加速度传感器lcd1602液晶电路蓝牙模块电路呼吸灯电路电源电路组成。 1.通过ADXL345检测步数&#xff0…

调试实战 | 记一次有教益的 vs2022 内存分配失败崩溃分析(续)

前言 前一阵子遇到了 vs2022 卡死的问题&#xff0c;在上一篇文章中重点分析了崩溃的原因 —— 当 vs2022 尝试分配 923MB 的内存时&#xff0c;物理内存页文件大小不足以满足这次分配请求&#xff0c;于是抛出异常。 本篇文章将重点挖掘一下 vs2022 在崩溃之前已经分配的内容…

HTML静态网页成品作业(HTML+CSS+JS)——动漫斗罗大陆介绍网页(3个页面)

&#x1f389;不定期分享源码&#xff0c;关注不丢失哦 文章目录 一、作品介绍二、作品演示三、代码目录四、网站代码HTML部分代码 五、源码获取 一、作品介绍 &#x1f3f7;️本套采用HTMLCSS&#xff0c;使用Javacsript代码实现图片轮播和tab切换&#xff0c;共有3个页面。 …

24年安克创新社招入职自适应能力cata测评真题分享北森测评高频题库

第一部分&#xff1a;安克创新自适应能力cata测评 感谢您关注安克创新社会招聘&#xff0c;期待与您一起弘扬中国智造之美。 为对您做出全面的评估&#xff0c;现诚邀您参加我们的在线测评。 测评名称&#xff1a;社招-安克创新自适应能力cata测评 第二部分&#xff1a;安克…

福建聚鼎:装饰画现在做起来难吗

在当代社会&#xff0c;艺术创作已经成为很多人表达自我、追求美学生活的方式之一。装饰画作为家居装饰的重要元素&#xff0c;也受到了越来越多人的喜爱。但做一个优质的装饰画真的容易吗? 从技术层面讲&#xff0c;随着科技的发展&#xff0c;制作装饰画的手段和材料都比以往…

【因果推断python】50_去偏/正交机器学习2

目录 Frisch-Waugh-Lovell on Steroids CATE Estimation with Double-ML Frisch-Waugh-Lovell on Steroids 双重/偏差 ML 其思想非常简单&#xff1a;在构建结果和治疗残差时使用 ML 模型&#xff1a; 是估计&#xff0c;是估计 我们的想法是&#xff0c;ML 模型具有超强的…

Autodesk Revit产品痛点分析

1.Revit已有20多年的历史&#xff0c;大多数软件公司认为大多数代码最多只有10年的生命周期。 2.Revit核心部分仍局限于单个CPU核心上,严重制约性能提升。 3.Revit只在数据库的大小和小细节上的改动。 4.Revit陈旧的绘图技术和性能难以提升。 5.Revit的致命弱点是模型增长的…

Red Hat Ansible Automation Platform架构

目录 示例架构&#xff1a;一、Ansible Automation Platform 实现流程详解1. 自动化控制器 (Automation Controller)2. 自动化网格 (Automation Mesh)3. 私有自动化中心 (Private Automation Hub)4. Event-Driven Ansible 控制器5. 数据存储 (PostgreSQL 数据库) 二、实现流程1…

C/C++打假:条件分支语句switch..case效率比if..else高?

很久很久以前&#xff0c;有人教导我说条件分支大于4条时&#xff0c;switch..case效率会比if..else高&#xff0c;条件分支为10条时&#xff0c;switch..case效率会比if..else快一倍不止。随着条件分支越多&#xff0c;效率差异越大。今日得闲&#xff0c;我做了个测试来验证这…

pyqt5 信号和槽函数以及Qthread 多线程的简单的例子

写了一个简单的例子&#xff1a; 包含一个主窗口和一个按钮。点击按钮时&#xff0c;我们将启动一个耗时的任务&#xff08;在这里我们使用time.sleep来模拟&#xff09;。为了不阻塞主线程&#xff0c;我们将在一个单独的线程中运行这个任务。同时&#xff0c;我们将显示一个进…

论文解读:Autoregressive Image Generation without Vector Quantization

这篇论文的主要内容围绕着一个核心问题&#xff1a;是否有必要将自回归模型与向量量化的表示方式绑定在一起&#xff0c;特别是在图像生成领域&#xff1f;作者团队来自麻省理工学院计算机科学与人工智能实验室&#xff08;MIT CSAIL&#xff09;、谷歌DeepMind以及清华大学&am…

力扣SQL 即时食物配送 II min函数 嵌套查询

Problem: 1174. 即时食物配送 II &#x1f468;‍&#x1f3eb; 参考题解 Code -- 计算立即配送的订单百分比 select round (-- 计算订单日期与客户偏好配送日期相同的订单数量sum(case when order_date customer_pref_delivery_date then 1 else 0 end) * 100 /-- 计算总订…

基于深度学习的图像识别技术与应用是如何?

基于深度学习的图像识别技术与应用在当今社会中扮演着越来越重要的角色。以下是对该技术与应用的详细解析&#xff1a; 一、技术原理 深度学习是一种模拟人脑处理和解析数据的方式的技术和方法论。在图像识别领域&#xff0c;深度学习主要通过深度神经网络&#xff08;如卷积…

CentOS7在2024.6.30停止维护后,可替代的Linux操作系统

背景 Linux的发行版本可以大体分为两类&#xff0c;一类是商业公司维护的发行版本&#xff0c;一类是社区组织维护的发行版本&#xff0c;前者以著名的Redhat&#xff08;RHEL&#xff09;为代表&#xff0c;后者以Debian为代表。国内占有率最多的却是Centos&#xff0c;这是由…