题解列表
题解 2905: 最大值和最小值的差
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b[100000]; scanf("%……
题解 2907: 不与最大数相同的数字之和
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b[1000],sum=0; scanf(&qu……
作业调度方案(模拟)
摘要:解题思路: 模拟注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nb……
倒杨辉三角形(递推)
摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;……
假币问题(模拟,分治)
摘要:解题思路:模拟注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ int&……
内码对称(移位 数组 回文)
摘要:解题思路:移位 数组 回文注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespace……