ch
-
php 通过 curl 模拟发送 get 请求
php 通过 curl 模拟发送 get 请求 $ch=curl_init(‘http://www.scutephp.com/’); curl_setopt…
-
PHP 实现抖音去水印
废话不多说,直接上代码!!! 1 <?php 2 $url = $_GET[‘url’]; 3 //获取视频url 4 $url = get_redirect_url($ur…
-
php后台管理系统laravel7.2以上异常发送钉钉告警提醒
1,/app/Http/Middleware/目录下新增文件Monitor.php <?php namespace App/Http/Middleware; use Erro…
-
javascript统计中文字符数量
/** * 统计区分中英文字符字数 */function getWordsCnt(str){ var n = 0; for(var i=0;i<str.lengt…
-
TopCoder 17403 See All Differences
这题和 https://atcoder.jp/contests/abc189/tasks/abc189_f 是相似的。 首先我们设/(f(mask,number)/)表示考虑若干个…
-
7月6日测试题题解
第一题: FBI树 洛谷同题:https://www.luogu.com.cn/problem/P1087 分析: 题目要求我们根据一个01串构建树。 01串的…
-
POJ – 3279 Fliptile 【状态压缩、dfs】
题目简述 Farmer John knows that an intellectually satisfied cow is a happy cow who will give m…
-
【图论/基环树】AcWing 392. 会合
分析 这题就是一道需要分类讨论的图论。。 注意到题目中每个点只有一条出边,也就是说给出的图是一个内向的基环树森林。 首先进行预处理: 开一个并查集,这能够将两个点不在同一棵基环树的…
-
【数据结构/分块/可持久化 Trie】AcWing 269. Fotile模拟赛L
块乐 分析 因为这题查询的是指定区间 /([l, r]/) 的最大异或子段,我们很难不想到使用可持久化 /(/texttt{trie}/) 来搞。 然而,对于每次查询,如果单纯地使…
-
[模板]2-SAT问题
#include<cstdio> #include<cstring> #include<string> #include<stac…