1108: 守望者的逃离 贪心 摘要:解题思路:贪心注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int m,s,…… 题解列表 2024年08月08日 0 点赞 0 评论 92 浏览 评分:0.0
题解 1108: 守望者的逃离 摘要:解题思路:#include <stdio.h> int main(int argc, char** argv) { int M,S,T,su=0,t,m,time; scanf("%d%d…… 题解列表 2024年07月02日 0 点赞 0 评论 111 浏览 评分:0.0
1108守望者的逃离(dp动态规划) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long M;//魔法初值long long S;//出口距离long long T…… 题解列表 2024年06月07日 0 点赞 0 评论 100 浏览 评分:0.0
1108: 守望者的逃离(双线牛逼) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m,s,t; cin>>m>>s>>t; i…… 题解列表 2024年03月12日 0 点赞 0 评论 219 浏览 评分:9.9
守望者的逃离(java) 摘要:解题思路: 似乎是贪心? 参考代码:import java.util.Scanner; public class Main1108 { //速度 和 魔法消耗 stat…… 题解列表 2023年10月24日 0 点赞 0 评论 129 浏览 评分:9.9
第二种简单解 摘要:参考代码:# 从标准输入读取三个整数 m, s, t,分别代表初始能量、目标能量和时间 m, s, t = map(int, input().split()) s1, s2 = 0, 0 # 初…… 题解列表 2023年10月11日 0 点赞 0 评论 146 浏览 评分:9.9
动态规划来解 摘要:参考代码:# 从标准输入读取守望者的初始魔法值、与出口的距离、规定时间 m, s, t = map(int, input().split()) # 用于保存每秒的闪烁位移、跑步位移和每秒的最大…… 题解列表 2023年10月11日 0 点赞 0 评论 158 浏览 评分:9.9
守望者的逃离:贪心加动态规划 摘要:解题思路:本题中每一秒可以做出的选择有三种,闪现,跑步,等待,闪现的话他有蓝量的限制,这一秒能不能闪取决于蓝量还够不够,每一步的状态改变是可以影响下一步的,是一个简单动态规划问题,而跑步的话就简单了,…… 题解列表 2023年09月04日 0 点赞 0 评论 288 浏览 评分:9.9
1108: 守望者的逃离 摘要:解题思路:本题使用贪心去解,如果走路比使用闪烁块就走路,如果闪烁快就直接用魔法在最开始时,如果有魔法就先把魔法用到不能再用为止用光魔法后开始比较走路与等待回魔+闪烁谁快将两种状态同时运行,当某个时间点…… 题解列表 2023年08月10日 0 点赞 0 评论 113 浏览 评分:0.0
贪心算法—局部最优解(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define max(x,y) x>y?x:y #define V 17//移动速度 #define sk 60//技能移动距…… 题解列表 2022年09月12日 0 点赞 1 评论 735 浏览 评分:9.9