解题思路:模拟龟兔赛跑过程即可
注意事项:注意比赛过程逻辑就行了
参考代码:
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int v1 = sc.nextInt(), v2 = sc.nextInt(), t = sc.nextInt(), s = sc.nextInt(), l = sc.nextInt();
sc.close();
R rabbit = new R(v1, t, s);
T tortoise = new T(v2);
int time = 0;
while (true) {
rabbit.run();
tortoise.run();
time++;
if (rabbit.sum >= l) {
// 如果兔子跑到了终点
if (tortoise.sum >= l) {
// 乌龟也跑到了终点,就平局
System.out.println("D");
System.out.println(time);
break;
} else {
// 否则兔子赢
System.out.println("R");
System.out.println(time);
break;
}
} else if (tortoise.sum >= l) {
// 兔子没到终点,但乌龟到了,就乌龟赢
System.out.println("T");
System.out.println(time);
break;
}
// 每跑一秒,兔子检测是否要睡觉一次
rabbit.lazy(tortoise.sum);
}
}
}
//兔子对象
class R {
public int sum;
public int t;
public int s;
public int v;
public boolean isSleep;
public int sleetTime;
R(int v, int t, int s) {
this.v = v;
this.t = t;
this.s = s;
this.isSleep = false;
this.sleetTime = 0;
}
public void lazy(int rabbit_sum) {
// 如果自己比乌龟跑的多到一定程度,就睡觉
if (this.sum - rabbit_sum >= this.t) {
if (!this.isSleep) {
// 并且此时没有在睡觉,就睡觉
this.sleetTime = this.s;
this.isSleep = true;
}
}
}
public void run() {
if (this.isSleep) {
this.sleetTime -= 1;
if (this.sleetTime <= 0)
this.isSleep = false;
} else {
this.sum += this.v;
}
}
}
//乌龟对象
class T {
public int sum;
public int v;
T(int v) {
this.v = v;
}
public void run() {
this.sum += this.v;
}
}
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复