题解列表

筛选

分段函数求值

摘要:解题思路:基础的if else 条件语句逻辑和逻辑与运算符的使用注意事项:注意逻辑与运算符是&&,不要写成了位与运算参考代码:#include<stdio.h>int fun(int data);in……

python-种树(递归)

摘要:解题思路:递归。注意事项:参考代码:def dfs(x,cnt,now):         global n,m,A,vis,ans               if cnt == m:    ……

hhhhhhhhhhhhhhhh谢谢你

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int……

核电站问题

摘要:解题思路:就算是抄袭也要光明正大的抄袭,https://blog.csdn.net/zujiasheng/article/details/80357144?自己看吧!注意事项:参考代码:#includ……

dfs 1117: K-进制数

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int ans; int n, k; void dfs(int x, int cn……