题解列表
菲暃要加油——校门外的树
摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())l=[1]*(a+1)print(l)foriinrange(b)……
使用STL中的map与priority_queue
摘要:解题思路:同时使用STL中的map与priority_queue;map具有映射功能,能够很好地统计出现次数,很好地节约空间;priority_queue用小根堆的特性可以直接将输入的数进行排序,同时……
题目2774:计算三角形面积
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x1,y1,x2,y2,x3,y3; dou……
题解 1069: 二级C语言-寻找矩阵最值
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n; scanf("%d",&……