题解列表

筛选

简单for循环

摘要:解题思路:1、根据对称性,只看前n/2行即可               2、发现奇数行和偶数行的规律                奇数行i/2个*-,结尾i/2个-*   中间全是
优质题解

最长上升子序列(贪心+二分)

摘要:线性DP(O(n^2)):[传送门](https://blog.dotcpp.com/a/91960 "动态规划") ------------ ## 贪心+二分(nlogn) ##### *……

c++解题思路

摘要:```cpp #include using namespace std; struct time { int year; int month; int day; };……

charAt之字符串反转

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

1868: 装包装箱问题

摘要:解题思路: 箱子严格按由大到小装       6- 5-4-3-2-1                                                      &nb

1058: 二级C语言-求偶数和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,s=0; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++……

15行代码写完

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a,b;     while(cin>……

三个数找最大值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max; scanf("%d%d%d",&a,&b,&c); max=a; if(……