摘要: 题目:A 春 链接:A-春_牛客练习赛132 思路:只需要把最短的两条分别放在最两端即可。最短的两条只需要计算一次(所有的等腰梯形的上底和下底全部算上,这两条只需要加一次),其他的都需要加上两次。 代码: #include<iostream> #include<algorithm> #include 阅读全文
posted @ 2024-12-02 20:39 hanbaodao 阅读(5) 评论(0) 推荐(1) 编辑
摘要: 标题:P1217 [USACO1.5] 回文质数 Prime Palindromes 链接:https://www.luogu.com.cn/problem/P1217 思路: 1.暴力枚举,超时 2.回文和质数共同判断,超时 3.数字通过 string s=to_string(n);转化为字符串, 阅读全文
posted @ 2024-11-27 20:28 hanbaodao 阅读(4) 评论(0) 推荐(0) 编辑
摘要: B lz的数字问题 链接:B-lz的数字问题_牛客小白月赛105 思路:多列举测试用例,考虑完整。首先判断是整数还是小数,小数分整数和小数两部分判断(函数调用最方便!)。注意有<小数的小数部分不够六位>的情况 看个错误代码: tip(注释里):1.判断整数和小数应遍历整个数组,若出现".",则为小数 阅读全文
posted @ 2024-11-24 23:26 hanbaodao 阅读(3) 评论(0) 推荐(0) 编辑
摘要: A - Cyclic 链接:A - Cyclic 代码: #include<bits/stdc++.h> using namespace std; int main() { string ss; cin>>ss; cout<<ss[1]<<ss[2]<<ss[0]<<" "<<ss[2]<<ss[0 阅读全文
posted @ 2024-11-24 20:20 hanbaodao 阅读(2) 评论(0) 推荐(0) 编辑
摘要: A. Set 链接:Problem - A - Codeforces 思路:r/k求 零 到 r 中 k的倍数,最后减去l,减去1,求个数 代码: #include<iostream> using namespace std; int main() { int t; cin>>t; for(int 阅读全文
posted @ 2024-11-11 20:39 hanbaodao 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A 冰冰的正多边形 链接:https://ac.nowcoder.com/acm/contest/93218/A 思路:能拼成的正多边形中周长最小的正多边形周长,即先sort,后找第一个出现的正三边形 代码: #include<bits/stdc++.h> using namespace std; 阅读全文
posted @ 2024-11-06 12:21 hanbaodao 阅读(4) 评论(0) 推荐(0) 编辑
摘要: C. CCPC 链接:Problem - C - Codeforces 思路:已知C和P的数量,CCP看成一组,C可以重复匹配。min找最多能匹配的数量 代码: #include<bits/stdc++.h> using namespace std; int cntc=0,cntp=0; int m 阅读全文
posted @ 2024-11-05 20:26 hanbaodao 阅读(2) 评论(0) 推荐(0) 编辑
摘要: A. Perpendicular Segments 链接: Problem - A - Codeforces 思路:观察样例 代码: #include<iostream> using namespace std; typedef long long ll; int main() { int t; c 阅读全文
posted @ 2024-11-05 19:42 hanbaodao 阅读(2) 评论(0) 推荐(0) 编辑
摘要: B. Stalin Sort 链接:Stalin Sort 思路:遍历数组里每一个数,假定他是最大值,将不符合条件要删去的数累加得ans,最终比较得最小值。 代码: #include<bits/stdc++.h> using namespace std; int a[3000]; int main( 阅读全文
posted @ 2024-10-28 19:37 hanbaodao 阅读(5) 评论(1) 推荐(1) 编辑
摘要: C - Avoid Knight Attack 链接: C - Avoid Knight Attack 思路:总网格数-被放上棋子的数量=空的方格数 AC代码: #include<bits/stdc++.h> #define int long long using namespace std; in 阅读全文
posted @ 2024-10-28 17:31 hanbaodao 阅读(5) 评论(0) 推荐(0) 编辑