题解列表

筛选

利润计算(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……

1074数字整除(数学除法)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[200]; while(scanf("%s",arr)!=EOF) { if(arr[0]=……