码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
A - 敌兵布阵 HDU - 1166 (单点更新+区间和)
A - 敌兵布阵 HDU - 1166 C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了。A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况。由于采取了某种先进的监测手段,所以每个工兵营地的人数C国都掌握的 ...
分类:其他好文   时间:2020-05-05 00:28:48    阅读次数:61
mac上phpstorm的一些设置
插件安装 PHP ANNOTATIONS 注释对齐 prefenerces editor code style code generation comment Code 打勾 add space at comment start 滚轮缩放代码区域大小 prefenerces editor gener ...
分类:Web程序   时间:2020-05-04 19:11:40    阅读次数:95
100136. 冒泡的胖头鱼Out of Sorts
100136 题解 分界线i的产生当且仅当右边属于左边的全部移过去,等价于右边要移的最大的数前要移到右边的数个数,等于最大位置 i,设为c[i] 然后一个数算的次数=max(c[i 1],c[i]),0要当做1来算 ~~不需要用栈~~ code ...
分类:其他好文   时间:2020-05-04 17:25:40    阅读次数:52
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
18346条   上一页 1 ... 89 90 91 92 93 ... 1835 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!