题解列表

筛选

清晰明了不要想太多

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int N, i; double sum1=0, sum2=0, M; scanf("%lf%d", &M, ……

没毛病吧?、老铁

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     cout<<4150<<endl; cout……

勉强通过测试没办法解决两行两列问题的c++代码

摘要:解题思路:首先确定该题目是属于数据结构中的连通图的遍历问题,想到要使用dfs即深度优先遍历,属于一个递归,回溯和剪枝问题注意事项:要注意递归循环时需要在设置一个数组来标记该点有没有被访问过,否则会出现……

十六进制转十进制

摘要:```python n = input() d = int(n, 16) print(d) ```# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,……

编写题解 2322: 大鱼吃小鱼

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split()) ls=list(map(int,input().split())) for i in range(m): ……