码迷,mamicode.com
首页 >  
搜索关键字:no space    ( 18273个结果
kd-tree板子
#include<iostream> #include<cstdio> #include<algorithm> #include<vector> #include<cmath> #define alpha (0.75) using namespace std; const int N = 6e5 + ...
分类:其他好文   时间:2020-05-04 17:23:34    阅读次数:49
7-51 两个有序链表序列的合并 (20分)
1 #include <iostream> 2 using namespace std; 3 typedef struct node 4 { 5 int id; 6 struct node* next; 7 }*L; 8 int main() 9 { 10 L l1=NULL, l2=NULL, l ...
分类:其他好文   时间:2020-05-04 17:22:17    阅读次数:81
PHP中CURL实现GET和POST请求
POST方式实现(推荐) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 function postData($url,$data){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_ ...
分类:Web程序   时间:2020-05-04 15:05:22    阅读次数:67
object and ptr
1, #include <iostream> #include <string> #include <vector> #include <memory> using namespace std; class fruit { public: int *idx ; }; int prodoucer(ve ...
分类:其他好文   时间:2020-05-04 13:20:07    阅读次数:59
Find Pair
Find Pair 思路 排一下序然后枚举计数就行了,不是挺简单的嘛。 这是我以为能过的代码,没想到$Wrong\ answer\ on\ test\ 3$,还是只能过样例。 ...
分类:其他好文   时间:2020-05-04 13:05:34    阅读次数:64
[oracle]Oracle查询表空间的每日增长量
SELECT a.snap_id, a.con_id, e.name pdbname, c.tablespace_name ts_name, to_char(to_date(a.rtime, 'mm/dd/yyyy hh24:mi:ss'), 'yyyy-mm-dd hh24:mi') rtime, ...
分类:数据库   时间:2020-05-04 00:50:04    阅读次数:196
Codeforces Round #638 (Div. 2) E思维,,dp
题: 题意:给定n组,每组ai个红果,bi个白果。还给定整数k,代表组成同一盆要达成的数目,同时组成同一盆的水果要么是来自同一组,要么就是有相同颜色,问最大能组成多少盆 分析:初步地,我们可以只是按照颜色来分组,那么答案就是suma/k+sumb/k,那么就剩下不足k个的红果和不足k个的白果,这时我 ...
分类:其他好文   时间:2020-05-03 21:52:44    阅读次数:66
PHP常量和数据类型考察点
PHP常量和数据类型考察点 PHP 常量# 常量是单个值的标识符(名称)。在脚本中无法改变该值。 有效的常量名以字符或下划线开头(常量名称前面没有 $ 符号)。 注释:与变量不同,常量贯穿整个脚本是自动全局的。 PHP常量的两种定义方式# const const 是语言结构,效率更高 Copy <? ...
分类:Web程序   时间:2020-05-03 20:28:17    阅读次数:66
「CF1342D Multiple Testcases」
「CF1342D Multiple Testcases」的题解 ...
分类:其他好文   时间:2020-05-03 16:33:28    阅读次数:59
线段树 P3373
题目 https://www.luogu.com.cn/problem/P3373 思路 参考:https://www.luogu.com.cn/blog/milkfilling/solution-p3373 ①加法优先,即规定好segtree[root*2].value=((segtree[roo ...
分类:其他好文   时间:2020-05-03 16:28:26    阅读次数:44
18273条   上一页 1 ... 89 90 91 92 93 ... 1828 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!