- A+
共计 1701 个字符,预计需要花费 5 分钟才能阅读完成。
题目
某探险队负责对地下洞穴进行探险。探险队成员在进行探险任务时,随身携带的记录器会不定期地记录自身的坐标,但在记录的间隙中也会记录其他数据。探索工作结束后,探险队需要获取到某成员在探险过程中相对于探险队总部的最远的足迹位置。
仪器记录坐标时,坐标的数据格式为(x,y),如(1,2)、(100,200),其中0<x<1000,0<y<1000。同时存在非法坐标,如(01,1)、(1,01),(0,100)属于非法坐标。
设定探险队总部的坐标为(0,0),某位置相对总部的距离为:xx+yy。
若两个座标的相对总部的距离相同,则第一次到达的坐标为最远的足迹。
若记录仪中的坐标都不合法,输出总部坐标(0,0)。
备注:不需要考虑双层括号嵌套的情况,比如sfsdfsd((1,2))。
描述:
输入:字符串,表示记录仪中的数据。
如:ferga13fdsf3(100,200)f2r3rfasf(300,400)输出:字符串,表示最远足迹到达的坐标。
如: (300,400)
示例1
输入
ferg(3,10)a13fdsf3(3,4)f2r3rfasf(5,10)
输出
(5,10)
说明
记录仪中的合法坐标有3个: (3,10), (3,4), (5,10),其中(5,10)是相距总部最远的坐标, 输出(5,10)。
示例2
输入
asfefaweawfaw(0,1)fe
输出
(0,0)
说明
记录仪中的坐标都不合法,输出总部坐标(0,0)
JAVA解法
import java.util.ArrayList;
import java.util.Scanner;
/**
* 合法坐标
*
* @since 2022年4月25日
*/
public class LegalCoordinates {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String line = scanner.nextLine();
// 拿到所有坐标
ArrayList<String> coordinates = new ArrayList<>();
StringBuilder builder = new StringBuilder();
boolean left = false;
for (int i = 0; i < line.length(); i++) {
char c = line.charAt(i);
if (c == '(') {
left = true;
continue;
}
if (left) {
if (c == ')') {
left = false;
coordinates.add(builder.toString());
builder.setLength(0);
continue;
}
builder.append(c);
}
}
// 处理坐标
ArrayList<String> legalCoordinates = new ArrayList<>();
String legalStr = "";
int len = 0;
for (String coordinate : coordinates) {
String[] split = coordinate.split(",");
if (split.length != 2) {
continue;
}
if (split[0].length() >= 4
|| split[1].length() >= 4
|| split[0].startsWith("0")
|| split[1].startsWith("0")) {
continue;
}
int result = calculate(split[0], split[1]);
if (result > len) {
len = result;
legalStr = '(' + coordinate + ')';
}
}
System.out.println("".equals(legalStr) ? "(0,0)" : legalStr);
}
private static int calculate(String left, String right) {
int le = Integer.parseInt(left);
int ri = Integer.parseInt(right);
return le * le + ri * ri;
}
}
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫