码迷,mamicode.com
首页 >  
搜索关键字:easy    ( 5384个结果
The Preliminary Contest for ICPC Asia Xuzhou 2019
B.so easy 并查集,可能会卡掉map,建议使用unordered_map。 C.Buy Watermelon 签到,大于2的偶数都可以被拆分成两个偶数和。 cpp include using namespace std; const int N = 1e6+100; const int mo ...
分类:其他好文   时间:2020-01-24 18:40:04    阅读次数:61
1028 List Sorting (25point(s)) Easy only once
基本思想: 没什么难的,水题,重点在于审题; 关键点: 无; #include<iostream> #include<stdlib.h> #include<stdio.h> #include<vector> #include<string> #include<math.h> #include<alg ...
分类:其他好文   时间:2020-01-23 12:39:56    阅读次数:82
1075 PAT Judge (25point(s)) Easy twice agin *一些细节问题
基本思路: 还是简单的排序问题,但是需要注意的是一些基本的思路和细节点; 关键点: 1.关于开数组的问题,特别大的话尽量开常规数组,这样避免初始化时候resize不太方便; 2.关于结构体初始化,增加逻辑可读性,直接提出一个函数专门init; 3.注意题目的隐含条件,尤其是是否有重复输入的问题; 4 ...
分类:其他好文   时间:2020-01-19 23:56:32    阅读次数:148
Android栈溢出漏洞利用练习
在Github上看到一个Linux系统上的栈溢出漏洞利用练习项目: easy-linux-pwn。在原项目基础上,我稍微做了一些改动,将这个项目移植到了Android 9.0系统上: easy-android-pwn。对Android漏洞利用有兴趣的可以练习一下。 ...
分类:移动开发   时间:2020-01-19 22:20:06    阅读次数:101
1083 List Grades (25point(s)) Easy only once
基本思想: 排序弱智题,没什么可说的; 关键点: 无; #include<iostream> #include<stdlib.h> #include<stdio.h> #include<vector> #include<string> #include<math.h> #include<algori ...
分类:其他好文   时间:2020-01-19 22:15:03    阅读次数:76
二叉树的层次遍历(BFS)
今日在LeetCode平台上刷到一道Medium难度的题,要求是二叉树的层次遍历。个人认为难度并不应该定在Medium, 应该是Easy比较合适,因为并没有复杂的算法逻辑,也没有corner cases class Solution { public List<List<Integer>> leve ...
分类:其他好文   时间:2020-01-19 09:49:13    阅读次数:105
npm的chalk包的使用
使用chalk定义输出样式:Chalk comes with an easy to use composable API where you just chain and nest the styles you want. const chalk = require('chalk') console ...
分类:其他好文   时间:2020-01-19 00:06:07    阅读次数:281
Codeforces 1251E2-Voting (hard version)
The only difference between easy and hard versions is constraints. Now elections are held in Berland and you want to win them. More precisely, you wan ...
分类:其他好文   时间:2020-01-17 10:20:05    阅读次数:118
1077 Kuchiguse (20point(s)) Easy only once
基本思想: 和示例一样,将后缀子串问题变为前缀子串问题判断,这样比较简单; 关键点: 前后缀子串,利用reverse函数更快; 1 #include<iostream> 2 #include<stdlib.h> 3 #include<stdio.h> 4 #include<vector> 5 #in ...
分类:其他好文   时间:2020-01-16 14:58:08    阅读次数:74
1035 Password (20point(s)) Easy only once
基本思想: 简单题目,有一个测试点在英文单复数上做了文章; 关键点: 无; #include<iostream> #include<stdlib.h> #include<stdio.h> #include<vector> #include<string> #include<math.h> #incl ...
分类:其他好文   时间:2020-01-16 14:55:44    阅读次数:73
5384条   上一页 1 ... 33 34 35 36 37 ... 539 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!