随笔分类 -  学习笔记

摘要:CSS代码: 博客侧边栏公告: 页首Html代码: 阅读全文
posted @ 2019-06-08 11:03 czh~ 阅读(122) 评论(0) 推荐(0)
摘要:设置字体:https://jingyan.baidu.com/article/f96699bb9442f3894e3c1b15.html general->appearance->colors and fonts 自动补全:https://jingyan.baidu.com/article/d45a 阅读全文
posted @ 2018-09-22 13:18 czh~ 阅读(152) 评论(0) 推荐(0)
摘要:高精度基本用法 valueOf(parament) 将参数转换为指定的类型 add() 相加 subtract() 相减 multiply() 相乘 divide() 相除 abs() 绝对值 negate() 取反数 mod() 取模 compareTo() 比较大小 stripTrailingZ 阅读全文
posted @ 2018-09-04 15:34 czh~ 阅读(134) 评论(0) 推荐(0)
摘要:lis:最长递增子序列 复杂度:$O(nlgn)$ 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 int num[55],lis[55],res=0; 5 int solve(int x) 6 { 7 int a=1 阅读全文
posted @ 2018-05-02 14:40 czh~ 阅读(265) 评论(0) 推荐(0)
摘要:学习资料:http://www.cnblogs.com/SYCstudio/p/7194315.html 例题1:洛谷3375:https://www.luogu.org/problemnew/lists?name=3375 解: #include <cstdio> #include <iostre 阅读全文
posted @ 2018-04-26 17:32 czh~ 阅读(169) 评论(0) 推荐(0)
摘要:水果 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 8666 Accepted Submission(s): 3447 Problem Desc 阅读全文
posted @ 2018-01-29 23:09 czh~ 阅读(204) 评论(0) 推荐(0)