题解列表

筛选

计算鞍点,简单易懂

摘要:解题思路:注意事项:参考代码:num = [list(map(int,input().split())) for _ in range(5)] row,col = [],[] sum = floa……

1227: 日期排序

摘要:解题思路:注意事项:参考代码:arr = [] while True:     try:         arr.append(list(map(str, input().split('……

3037: 棋盘问题 c++ 标准dfs

摘要:解题思路:1.标记棋盘位置2.每个位置可以放棋子和不放棋子3.分别搜索4.填完一种可能ans+1注意事项:dfs中有两个量,要区分!!step表示在第几号棋盘格num表示填了几个棋子参考代码:#inc……

明明的随机数

摘要:解题思路:先输入N,输入N个数,先排序再去重,最后输出,这种解题有点麻烦但是易懂注意事项:参考代码:#include<stdio.h>  int main(){ int a[1000],n,i,j,t……

蓝桥杯算法提高-能量项链

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int n, i, k, left, right;    int arr[200], min;    l……

题解 2701 取模C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> in……