上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 前缀和和差分 前缀和 #include <iostream> #include <algorithm> #include <cstdio> #include <cstring> #include <vector> #include <cstring> #include <unordered_set> 阅读全文
posted @ 2023-03-30 19:40 harper886 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 内存模型 一个对象的内存图 方法区开始运行,先找到Main函数,然后将这个方法入栈.new将会在堆空间中开辟空间,里面有成员变量和成员方法(注意,成员方法保存的是方法区的成员方法的地址值).new将会把地址返回给创建的对象,保存起来.访问成员变量只需要一步,访问成员方法需要两步.并且将成员方法入栈. 阅读全文
posted @ 2023-03-26 15:03 harper886 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 对象的的创建和使用 创建一个学生类 public class Student { /* 创建一个学生类 */ //下面是成员变量 String name;// int age; int weight; //下面是成员方法 public void eat () { System.out.println 阅读全文
posted @ 2023-03-26 12:08 harper886 阅读(20) 评论(0) 推荐(0) 编辑
摘要: A. Two Bags of Potatoes 链接 A. Two Bags of Potatoes 这个题就是求出大于等于y的k的倍数,并且再1-n之内的倍数全部将这个倍数减去y的最后的值打印出来 #include <iostream> #include <algorithm> #include 阅读全文
posted @ 2023-03-17 21:38 harper886 阅读(19) 评论(0) 推荐(0) 编辑
摘要: B. Pashmak and Flowers 链接 B. Pashmak and Flowers #include <iostream> #include <algorithm> #include <cstdio> #include <cstring> #include <vector> #incl 阅读全文
posted @ 2023-03-17 21:37 harper886 阅读(11) 评论(0) 推荐(0) 编辑
摘要: B. Sort the Array 链接 B. Sort the Array 这个题原本也是不会然后看了别人的题解,以及学长给了一个思路 学长给的思路就是找到最长的可以翻转的区间然后把这个区间翻转过来,然后在判断一遍是不是满足题目要求,满足就打印结果 #include <iostream> #inc 阅读全文
posted @ 2023-03-17 21:15 harper886 阅读(16) 评论(0) 推荐(0) 编辑
摘要: A. IQ test 链接 A. IQ test 这个题就是给一个数数组,数组有两种情况。 要么有n-1个奇数和一个偶数 要么有n-1个偶数和一个奇数 让我们求出这一个奇数和一个偶数所在数组的下标并且打印出来就可以了 #include <iostream> #include <algorithm> 阅读全文
posted @ 2023-03-17 21:14 harper886 阅读(13) 评论(0) 推荐(0) 编辑
摘要: C. Boxes Packing 链接 C. Boxes Packing 这个题就是找相同的数字的最大值.因为每一个数字都要放在一个盒子里面 打印就可以 #include <iostream> #include <algorithm> #include <cstdio> #include <cstr 阅读全文
posted @ 2023-03-17 21:14 harper886 阅读(10) 评论(0) 推荐(0) 编辑
摘要: A. Appleman and Toastman 链接 A. Appleman and Toastman 这个题要计算最大值所以我们肯定直接,每次都减少最少的那个,然后使用一个变量每次把值加上最后打印出来结果就可以了 #include <iostream> #include <algorithm> 阅读全文
posted @ 2023-03-17 21:13 harper886 阅读(15) 评论(0) 推荐(0) 编辑
摘要: A. Minimizing the String 链接 A. Minimizing the String 这个题的意思就是删除一个字母让字符串的字典序变得最小,如果字符串的顺序是abcda的话很明显我们要删除d所以我们要删除如果字母的序号是递增的话,删除最后一个递增的字符就可以了,如果例如bbbbb 阅读全文
posted @ 2023-03-12 19:35 harper886 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页