fo

【JZOJ6360】最大菱形和(rhombus)

随声附和 提交于 2020-01-11 01:47:56
description analysis 容易想到把原矩阵翻转 \(45°\) ,然后每个数再用 \(0\) 隔开 然后就变成了求最大子正方形,求完二维前缀和之后就很好做了 code #pragma GCC optimize("O3") #pragma G++ optimize("O3") #include<stdio.h> #include<string.h> #include<algorithm> #define MAXN 6005 #define ha 19260817 #define ll long long #define reg register ll #define fo(i,a,b) for (reg i=a;i<=b;++i) #define fd(i,a,b) for (reg i=a;i>=b;--i) using namespace std; ll a[3005][3005],b[MAXN][MAXN]; ll n,m,h,type,ans=-ha; ll Seed,A,B,C,MOD; inline ll read() { ll x=0,f=1;char ch=getchar(); while (ch<'0' || '9'<ch){if (ch='-')f=-1;ch=getchar();} while ('0'<=ch && ch<='9')x=x*10

Learning a Discriminative Null Space for Person Re-identification CVPR 2016

孤者浪人 提交于 2020-01-10 12:48:25
运用KNFST进行降维,用于行人再识别。 原理部分 NFST KNFST 实验部分 数据库 VIPeR: 论文提供了提取特征后的数据。 VIPeR contains 632 identities and each has two images captured outdoor from two views with distinct view angles. All images are scaled to 128 × 48 pixels。 632 people’s images are randomly divided into two equal halves, one for training and the other for testing. This is repeated for 10 times and the averaged performance is reported. A和B两个场景中各选择一半作为训练集合,另外一半作为测试集合。 A,B的训练集合集成在一起形成训练集。A的测试作为gallary, B的测试作为probe. 最终通过训练得到对特征空间的投影矩阵(隐式的,核方法),计算样本在低维空间中的投影特征,然后利用欧式距离进行识别,评估采用累积匹配曲线, CMC Cumulated Matching Characteristics。 By

js setTimeout 与 setInterval 以及 for 循环 刷新UI

孤者浪人 提交于 2020-01-05 01:37:13
1. setTimeout() 方法用于在指定的毫秒数后调用函数或计算表达式;执行一次; 如果需要执行多次,自身再次调用 setTimeout(); 示例:无穷循环并带停止按钮的 <html> <head> <script type="text/javascript"> var c=0 var t function timedCount() { document.getElementById('txt').value=c c=c+1 t=setTimeout("timedCount()",1000) } function stopCount() { clearTimeout(t) } </script> </head> <body> <form> <input type="button" value="开始计时!" onClick="timedCount()"> <input type="text" id="txt"> <input type="button" value="停止计时!" onClick="stopCount()"> </form> <p> 请点击上面的“开始计时”按钮。输入框会从 0 开始一直进行计时。点击“停止计时”可停止计时。 </p> </body> </html> 2. setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式;

【动态规划】Codeforce 1282B2 K for the Price of One (Hard Version)

和自甴很熟 提交于 2019-12-28 14:34:08
保研之后的休闲时光 一、 题目大意 题目的大致意思如下,有一家商店举办活动,可以用一个商品的价钱购买走K件商品,需要付出的价钱是这K件商品的最大值。题目给定你具有的金钱p,商品数n和商品价格数组a,要你求解最多能买多少件商品,规定每一件商品仅能购买一次。 二、题目思路以及AC代码 这题是上一道题 Codeforce 1282 B1 的一个困难版本,说是困难,其实就是用时间把暴力的方法给卡了… 我做题就很循规蹈矩,上一道题正好是暴力解决的。 好,下面来说一下这道题的思路,其实会了暴力的方法,这道题无非就是用动态规划去去除一些暴力方法的重复运算,正好两道题对比可以看出时间效率上的显著提高,那么如何进行动态规划呢? 考虑我们要购买第i件商品时的所有可能情况。为了方便说明,这里借用我定义的几个数组。  rest数组:rest[i],表示当前还剩多少钱  dp数组:dp[i],表示截至看到第i件商品,用所有的钱p最多可以购买多少件。  a数组:a[i],表示第i件商品的价钱   下面就是所有可能遇到的情况,当遇到第i件商品的时候,我们有两种选择: ① 用金钱a[i]购买这件商品,并且同时取走相邻小于a[i]的k件商品 ② 用金钱a[i]购买这件商品,且仅取走这件商品 这里要注意,题目要求只有这两种情况,不存在你购买商品后拿走小于k件商品。 所以当你遇到第i件商品的时候

【Exception】Column length too big for column 'create_by' (max = 16383); use BLOB or TEXT instead

允我心安 提交于 2019-12-28 03:49:41
案发现场 Column length too big for column 'create_by' (max = 16383); use BLOB or TEXT instead Display width out of range for column 'create_by' (max = 4294967295) Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs 原因分析 解决方案 参考 https://dev.mysql.com/doc/refman/5.7/en/char.html 实验测试了一下 mysql 的 varchar 的最大有效长度 MYSQL 5.7 VARCHAR 类型实验 来源: CSDN 作者: 花田小苏 链接: https://blog.csdn.net/AV_woaijava/article/details/103736167

成功解决NotFoundError (see above for traceback): Failed to create a directory: ; No such file or directo

荒凉一梦 提交于 2019-12-27 22:56:37
成功解决NotFoundError (see above for traceback): Failed to create a directory: ; No such file or directo 目录 解决问题 解决方法 解决问题 NotFoundError (see above for traceback): Failed to create a directory: ; No such file or directory [[Node: save/SaveV2 = SaveV2[dtypes=[DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT, ..., DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT], _device="/job:localhost/replica:0/task:0/device:CPU:0"](_arg_save/Const_0_0, save/SaveV2/tensor_names, save/SaveV2/shape_and_slices, Variable, Variable/Adam, Variable/Adam_1, Variable_1, Variable_1/Adam, Variable_1/Adam_1, Variable_2,

CentOS:ECDSA host key \"ip地址\" for has changed and you have requested strict checking(转)

岁酱吖の 提交于 2019-12-24 18:06:00
CentOS:ECDSA host key "ip地址" for has changed and you have requested strict checking(转) 原文地址: http://blog.csdn.net/ausboyue/article/details/52775281 Linux SSH命令错误:ECDSA host key "ip地址" for has changed and you have requested strict checking.记录下方便记忆。 解决方案:在终端上输入以下命令: ssh-keygen -R "你的远程服务器ip地址" 目的是清除你当前机器里关于你的远程服务器的缓存和公钥信息,注意是大写的字母“R”。 原因分析:根据个人的情况,原因是我的云服务器重装了系统(清除了与我本地SSH连接协议相关信息),本地的SSH信息便失效了,使用SSH连接相同的ip地址时使用的是失效的协议信息,所以会报错,使用上述命令便可以清除known_hosts里旧缓存文件 原文地址: http://blog.csdn.net/ausboyue/article/details/52775281 Linux SSH命令错误:ECDSA host key "ip地址" for has changed and you have requested strict

报错:The service or item was not found

喜夏-厌秋 提交于 2019-12-24 00:50:06
报错:The service or item was not found { "timestamp": "2019-12-23T11:51:58.046+0000", "path": "/api/v1.0/produoce/savePolicyInfo", "status": 503, "error": "Service Unavailable", "message": `"The service or item was not found."` } 原因: 微服务奔溃,没有成功启动 来源: CSDN 作者: 不一定的大牛 链接: https://blog.csdn.net/the_it_world/article/details/103672251

python报错wkhtmltopdf: command not found【python】

醉酒当歌 提交于 2019-12-23 17:36:28
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 一、执行python脚本命令时报错 wkhtmltopdf: command not found 这是命令是将HTML转化为PDF文件的 二、 1.安装依赖 yum install zlib fontconfig freetype X11 libs libX11 libXext libXrender libpng* 2.下载 到https://wkhtmltopdf.org/downloads.html下载stable(稳定版)Linux 64-bit或者32-bit(根据自身系统选择) 3.解压 64:tar -xvf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz 32:tar -xvzf wkhtmltox-0.12.4_linux-generic-i386.tar.xz 4.拷贝程序 cp wkhtmltox/bin/wkhtmltopdf /usr/bin/ 将程序拷贝到/usr/bin/目录中,这样可以任意目录执行。 5.使用 wkhtmltopdf [选项] 文件源地址 文件目标地址 wkhtmltopdf http://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared