码迷,mamicode.com
首页 >  
搜索关键字:hdu 4719 oh my holy    ( 45498个结果
Stirling数习题归档
列一下hdu,poj,CF上常见的Stirling数相关的习题(补充完善中): hdu2643 hdu3625 hdu4372 hdu4045 POJ1430 POJ2621 CF932E CF961G CF960G ...
分类:其他好文   时间:2020-07-12 16:52:18    阅读次数:64
HDU
##题面 Problem Description Lele now is thinking about a simple function f(x). If x < 10 f(x) = x. If x >= 10 f(x) = a0 * f(x-1) + a1 * f(x-2) + a2 * f(x ...
分类:其他好文   时间:2020-07-12 16:40:31    阅读次数:59
Python-02 可视化之tkinter介绍
1 控件介绍 1.1 Label import tkinter as tk # 使用Tkinter前需要先导入 window = tk.Tk() window.title('My Window') window.geometry('500x300') # 长宽 500x300 l = tk.Labe ...
分类:编程语言   时间:2020-07-11 22:48:20    阅读次数:67
[暑假集训]开训复健练习赛:B - Find a way ——HDU - 2612
#include<iostream> #include<cmath> #include<algorithm> #include<string> #include<cstring> #define DEBUG if( 1 )//是否输出调试用信息 using namespace std; int W, ...
分类:其他好文   时间:2020-07-11 19:21:29    阅读次数:61
MySQL 索引优化指南
MySQL索引 原理 b+ 树,记住这棵树!索引所有优化都围绕这棵树展开(hash索引除外) 优缺点 优点 索引大大减小了服务器需要扫描的数据量 索引可以帮助服务器避免排序和临时表 索引可以将随机IO变成顺序IO 索引对于InnoDB(对索引支持行级锁)非常重要,因为它可以让查询锁更少的元组。在My ...
分类:数据库   时间:2020-07-11 12:57:09    阅读次数:69
Self Introduction for History Class
Hi everyone! My name is Yuwei, and I'm a senior major in computer science. I enjoy meditation and jogging, and I feel like my soul is in a state of pe ...
分类:其他好文   时间:2020-07-11 10:08:34    阅读次数:97
mysql5.7.29 zip包安装教程
下载zip包 https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.29-winx64.zip 解压安装包 D:\mysql-5.7.29-winx64\mysql-5.7.29-winx64 在根路径创建my.ini [mysql] # 设置mysq ...
分类:数据库   时间:2020-07-10 20:58:50    阅读次数:153
hdu 3625
hdu3625 第一类Stirling数 组合数学 计数 简单的习题 ...
分类:其他好文   时间:2020-07-10 17:02:16    阅读次数:58
pandas 某列不为空的行
df = df[df['my_col'].notnull()] ...
分类:其他好文   时间:2020-07-10 16:54:44    阅读次数:123
Moogose的基本连接以及增删改查操作
var mongooes=require("mongoose"); mongooes.connect("mongodb://localhost/my_test",{useMongoClient:true}) mongooes.connection.once("open",function(){ co ...
分类:其他好文   时间:2020-07-10 15:37:04    阅读次数:64
45498条   上一页 1 ... 43 44 45 46 47 ... 4550 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!