随笔分类 -  贪心

摘要:P4995 跳跳! 题目 题目大概的意思就是给出你n个石头高度 , 让你求消耗体力最大是多少 思路 ans += 最大的数 如果当前位置是最大的 就找最小的 代码 #include<bits/stdc++.h> using namespace std; #define int long long t 阅读全文
posted @ 2022-01-29 11:52 彬腾 阅读(38) 评论(0) 推荐(0)
摘要:P1106 删数问题 题目 思路 每次删除s[i] > s[i+1]的位置,最后注意去除前导零 代码 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e6 + 10; int a[N] 阅读全文
posted @ 2022-01-29 11:10 彬腾 阅读(36) 评论(0) 推荐(0)