绕过 - 仅对域名校验 #POC #"Access-Control-Allow-Origin: https://xx.co & Access-Control-Allow- Credentials: true". #Origin: https://xx.co.evil.net, Access-Cont ...
分类:
其他好文 时间:
2019-07-29 00:04:55
阅读次数:
180
1137. N-th Tribonacci Number 1137. N-th Tribonacci Number The Tribonacci sequence Tn is defined as follows: T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn ...
分类:
其他好文 时间:
2019-07-28 14:08:03
阅读次数:
89
由于最终的染色只与ci为几的个数有关,因此定义状态f[a][b][c][d][e][p]表示有a个ci=1,b个ci=2,……,有e个ci=5,上一次选择了ci=p的。状态的转移:发现p会让p-1少选一次,因此可以写出方程(详见代码),可以用记忆化搜索来写。 1 #include<bits/stdc ...
分类:
其他好文 时间:
2019-07-28 11:01:20
阅读次数:
80
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> img { position: absolute; top: 0; } #left { left: 0; } #right { ...
分类:
其他好文 时间:
2019-07-28 09:45:23
阅读次数:
122
题目在这 Sample Input Sample Output 题目意思:4个点,6个边,每个边有对应的权值。最后输出一行为路径中最大的边的值,第二行为路径上边的总数, 第三行为每条边的始末编号。题目需要求出最小生成树的最大边的最小值。 1 /* 2 Problem: 1861 User: 3 Me ...
分类:
Web程序 时间:
2019-07-27 21:04:00
阅读次数:
133
最近做的微信公众号点击链接跳转到H5页面,该H5页面使用mui做的,遇到的商品列表页出现一个横线的问题, 这个是修改前的图片 解决方法: <style type="text/css"> /* 去掉了图文表格中出现的一条横线 */ .before_hide:before { display: none ...
分类:
其他好文 时间:
2019-07-27 14:32:44
阅读次数:
144
目录 Loading文件夹 index.js index.less 代码详情 index.js import React, { Component } from 'react'; import './index.less'; class Loading extends Component { ren ...
分类:
其他好文 时间:
2019-07-26 19:28:04
阅读次数:
91
所有题解都在注释里面。 1004: 1 /* 2 出题人的说法:最终通过停车线的时候,一定是一个车后面堵着剩余所有车。那么影响 3 时间的就只有最前面这辆车,所以对于每一辆车,假设是它与0车堵在一起的最靠前的一辆车。 4 那么可以计算出一个值。所有的车的计算值的最大值就是答案。 5 这个就是出题人的 ...
分类:
其他好文 时间:
2019-07-26 14:34:03
阅读次数:
144
若a*b≡1(mod p) 即a,b互为mod p意义下的逆元 即(x/a)%p应为x*b%p 一、扩展欧几里得求逆元 根据a*b+p*k=1 板子O(logN): 1 #include<bits/stdc++.h> 2 typedef long long ll; 3 ll exgcd(ll a,l ...
分类:
其他好文 时间:
2019-07-26 01:14:20
阅读次数:
648
var win_h = $(window).height();//关键代码 window.addEventListener('resize', function () { if($(window).height() < win_h){ $('.share-btn-box').hide(); }els... ...
分类:
移动开发 时间:
2019-07-25 23:27:15
阅读次数:
150