摘要: 重点:ACM 继续补CF、ACM-Step(HDU)、ACM数论之旅、图论、补齐各种被遗忘的之前熟练的不熟练的算法 把有记录下来的CF的题再看一遍(手动微笑!) 数据结构:以算导为参考尽量看懂、实现 ( 抄个代码也行嘛╭(╯^╰)╮ ) 每天补补线代、计组 ( 尽量别翘课( ⊙ o ⊙ ) ) ( 阅读全文
posted @ 2016-04-03 02:50 book丶book丶 阅读(128) 评论(0) 推荐(0) 编辑
摘要: "Int64以内Rabin Miller强伪素数测试和Pollard 因数分解的算法实现" 选取随机数$a$ 随机数$b$,检查$gcd(a b, n)$是否大于1,若大于1则$a b$是$n$的一个因数 实现1:floyd判环 利用多项式$f(x)$迭代出${x_0, x_1, \dots, x 阅读全文
posted @ 2017-01-25 13:26 book丶book丶 阅读(2048) 评论(0) 推荐(1) 编辑
摘要: "POJ 1852" "Ants" "POJ 2386" "Lake Counting" "POJ 1979" "Red and Black" "AOJ 0118" "Property Distribution" "AOJ 0333" "Ball" "POJ 3009" "Curling 2.0" 阅读全文
posted @ 2016-11-08 00:46 book丶book丶 阅读(320) 评论(0) 推荐(0) 编辑
摘要: HDU ACM Steps RECORD Chapter 1 Section 1 暖手题 "1.1.1" A+B for Input Output Practice (I) "1.1.2" A+B for Input Output Practice (II) "1.1.3" A+B for Inpu 阅读全文
posted @ 2016-10-25 11:23 book丶book丶 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 2016 08 09 前几天装的manjaro一直卡住,今天想换archlinux.... 先联个网..... 写入U盘 "tuna" 下载了ISO UltraISO 写进U盘,结果出问题了,经某老司机排查发现是写的时候出了问题,果断换软件 Universal USB Installer 写进U盘, 阅读全文
posted @ 2016-08-10 03:27 book丶book丶 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: 快速排序 水仙花数(三位自幂数/阿姆斯特朗数) 普通筛素数(O(sqrt(n))) 递归求斐波那契数 谁用谁知道 Python: Index Of Modules The Zen Of Python ................ JSON转列表 `eval(json_data.replace(' 阅读全文
posted @ 2016-07-30 10:44 book丶book丶 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 参考: 21分钟MySQL入门教程 登录MySQL mysql -D DATABASENAME -h HOSTNAME -P PORT -u USERNAME -p -D 登录后进入数据库,非必选 -h 指定登录主机名,登录当前机器可省略 -P 端口 -u 登录用户名 -p 使用密码登录,若该用户没 阅读全文
posted @ 2016-07-20 01:07 book丶book丶 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 简单数据类型:字符串型、布尔型、数值型 变量名可以包含数字、字母、下划线、$,但不能以数字开头,大小写敏感,不能是JavaScript关键字、避开保留字 //JavaScript保留字 break else new var case finally return void catch for swi 阅读全文
posted @ 2016-07-08 12:21 book丶book丶 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 某爱熬夜的人对付自己的东西 1、shutdown命令 shutdown -a #取消现有的shutdown计划 shutdown -s -t [time] #设定时间关机 shutdown -r -t [time] #设定时间重启 2、bat基础 定义变量set 参数/p用于交互 参数/a用于指定等 阅读全文
posted @ 2016-07-07 17:42 book丶book丶 阅读(1470) 评论(0) 推荐(0) 编辑
摘要: 某无聊的下午的一个小需求 1 import os 2 dirPath = r'' #路径 3 format = r'' #后缀 4 name = 0 5 for file in os.listdir(dirPath): 6 oldPath = '%s\%s'%(dirPath, file) 7 ne 阅读全文
posted @ 2016-07-07 15:51 book丶book丶 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1A 水题 然而看不仔细爆int了 c++ 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 int main(){ 5 double n, m, a; 6 cin >> n >> m >> a; 阅读全文
posted @ 2016-05-15 22:13 book丶book丶 阅读(392) 评论(0) 推荐(0) 编辑