题解列表

筛选

万变不离其宗

摘要:解题思路:注意事项:参考代码:#include <stdio.h>    #define N 10010    int f[N], w[N], v[N];    int main() {      i……

万变不离其宗 叫我老翟

摘要:解题思路:注意事项:参考代码:#include <stdio.h>  #include <stdlib.h>    typedef struct node {      int start, end,……

二级C语言——平均值计算

摘要:解题思路:先在循环中把十个数输入并加起来,之后在另一个循环中挨个跟平均数比较,用k统计大于平均数的数;注意事项:需要使用float参考代码:#include <stdio.h>int main(){ ……

利润计算(c语言)

摘要:解题思路:将利润除以100000,所得数使用switch函数进行选择。注意事项:参考代码:#include int main(){ int i,t; scanf("%d",&i); int……

贪心+二分+逆序获取最小字典序输出

摘要:解题思路:首先得知道什么是最长递增子序列LIS,自行百度,一般有两种做法,一种是一维线性dp复杂度为n^2,另一种是贪心+二分,符合本题的要求。1、很明显游客名单这是一个严格递增子序列,那就按规则建立……

1951:求平方和

摘要:参考代码:#include<stdio.h>#include<math.h>int main(){int a=3;int b=4;    scanf("%d%d",&a,&b);    printf(……

1075: 台球碰撞

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; double l,w,x,y,r,a,v,s; i……

2042: 杨辉三角

摘要:解题思路:注意事项:注意const int N=1e3+5不是1e3如果是1e3会数据越界参考代码:#include <bits/stdc++.h>using namespace std;typede……

简单易懂,看懂给个好评!

摘要:解题思路:注意事项:参考代码:h = 0q = 0hours = []n = int(input())for i in range(n):    q += 1    a, b = map(int, i……