#pragma optimize("-O2") #include<bits/stdc++.h> #define LL long long #define int LL #define N 2007 #define mo 100000007 #define sight(c) ('0'<=c&&c<=' ...
分类:
其他好文 时间:
2018-01-06 22:10:11
阅读次数:
154
网络流: #pragma GCC optimize("O2") #include<bits/stdc++.h> #define eho(x) for(int& i=hed[x];~i;i=net[i]) #define Eho(x) for(int i=head[x];~i;i=net[i]) #d ...
分类:
其他好文 时间:
2018-01-06 21:03:25
阅读次数:
157
1 # coding=utf-8 2 3 from scipy import optimize 4 import numpy as np 5 6 7 8 9 10 11 12 13 14 15 def get(args): 16 a, b, c, d, e, f, g, h = args 17 fu... ...
分类:
其他好文 时间:
2018-01-03 17:30:05
阅读次数:
4151
好屎的一道题啊 倒序加边kruscal,LCT维护maxn 然而我在bzoj上并卡不过去 操 放上我用尽心思卡评测的代码 1 #pragma optimize GCC ("O3") 2 #include<cstdio> 3 #include<algorithm> 4 #include<map> 5 ...
分类:
其他好文 时间:
2018-01-03 14:05:43
阅读次数:
176
目录 数据可视化 梯度下降 结果可视化 数据可视化 返回目录 梯度下降 返回目录 结果可视化 返回目录 ...
分类:
其他好文 时间:
2017-12-31 22:32:00
阅读次数:
315
P2935 [USACO09JAN]最好的地方Best Spot P2935 [USACO09JAN]最好的地方Best Spot P2935 [USACO09JAN]最好的地方Best Spot 题目描述 Bessie, always wishing to optimize her life, h ...
分类:
其他好文 时间:
2017-12-30 16:03:10
阅读次数:
140
仅做记录之用。 java代码可以反编译,因此有时候要保护自己的知识产权还真得费点心思,一般来说有三个思路: 1、将class文件加密,这个是最安全的,但也费事儿,因为要重写classloader来揭秘class文件; 2、使用花指令,使得class文件不能反编译(利用反编译工具漏洞);安全性一般,还 ...
分类:
编程语言 时间:
2017-12-15 10:25:18
阅读次数:
360
本节内容: EFK介绍 安装配置EFK 配置efk-rbac.yaml文件 配置 es-controller.yaml 配置 es-service.yaml 配置 fluentd-es-ds.yaml 配置 kibana-controller.yaml 配置 kibana-service.yaml ...
分类:
Web程序 时间:
2017-12-04 11:42:29
阅读次数:
1856
linkedin : word ladder 1.5 如果被challenge用26个char iteration太慢的话,大家怎么optimize? 在word ladder 基础上 就用了parent hash map backtracking 可以吗? ...
分类:
其他好文 时间:
2017-12-02 11:22:29
阅读次数:
171
Description: Given an index k, return the kth row of the Pascal’s triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your ...
分类:
其他好文 时间:
2017-11-26 21:04:54
阅读次数:
155