摘要:
B. Stalin Sort 链接:Stalin Sort 思路:遍历数组里每一个数,假定他是最大值,将不符合条件要删去的数累加得ans,最终比较得最小值。 代码: #include<bits/stdc++.h> using namespace std; int a[3000]; int main( 阅读全文
摘要:
C - Avoid Knight Attack 链接: C - Avoid Knight Attack 思路:总网格数-被放上棋子的数量=空的方格数 AC代码: #include<bits/stdc++.h> #define int long long using namespace std; in 阅读全文