题解列表

筛选

冶炼金属C++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { long long int a[10005],……

利用变换次数

摘要:解题思路:利用左支不变右支变注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intma……

简单版bfs解法

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int MAX=105;int row,col;//定义行,……

1026使用for循环的写法

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<……

1014的递归写法

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long fs(long long n)//定义一个函数fs,功能是对计……