题解列表

筛选

蠢猪级解法

摘要:解题思路:模拟长除法注意事项:参考代码:#include<iostream>using namespace std;int main(){ char n[256]; while (cin ……

老管家的忠诚2(线段树)

摘要:解题思路: 代码分为线段树构建(build_tree)、区间查询(query)、单点更新(update)和主函数(main)四部分注意事项:参考代码:#include<bits/stdc++.h……

2808: 买房子

摘要:#include <bits/stdc++.h>using namespace std;int main(){ double y=200; ……

2829:数1的个数

摘要:解题思路:注意事项:参考代码:int main(){ int num,count=0,i,n; scanf("%d",&……