摘要: 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 阅读(7) 评论(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) 编辑