居左


私信TA

用户名:JZ50

访问量:75714

签 名:

楼下你的分数已经再次被超越!!快刷!!

等  级
排  名 34
经  验 14142
参赛次数 2
文章发表 109
年  龄 0
在职情况 学生
学  校 99
专  业

  自我简介:

TA的其他文章

解题思路:





注意事项:





参考代码:

import java.util.Scanner;

public class C1476 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		while (sc.hasNext()) {
			String[] num = sc.nextLine().split("[ ]+");
			F(Integer.valueOf(num[0]), Integer.valueOf(num[1]), Integer.valueOf(num[2]),
					Integer.valueOf(num[3]), Integer.valueOf(num[4]));
		}
		sc.close();
	}
	
	private static void F(int v1, int v2, int t, int s, int l){
		int t1 = 0, t2 = l/v2; //t1和t2分别代表兔子和乌龟走的时间
		int l1 = 0, l2 = 0; //l1和l2分别代表兔子和乌龟所走的路程
		while(++t1 <= t2){
			l1 += v1;
			if(l1 >= l){ //兔子到达后, 退出循环
				if(t1 < t2){ // 兔子赢
					System.out.printf("%s\n%d\n", "R", t1);
				}else if(t1 == t2){ //同时到达
					System.out.printf("%s\n%d\n", "D", t1);
				}
				break;
			}
			l2 += v2;
			if(l1 - l2 >= t){
				l2 += s*v2;
				if(l2 >= l){ // 乌龟赢
					System.out.printf("%s\n%d\n", "T", t2);
					break;
				}else{
					t1 += s;
				}
			}
		}
		
	}
}


 

0.0分

0 人评分

  评论区

  • «
  • »