1.学了个标记永久化,用处有限,但是也有用 这里详解 code #include <cstring> #include <cstdio> #include <algorithm> #define int long long #define R register int #define printf ...
分类:
其他好文 时间:
2021-05-24 10:59:02
阅读次数:
0
主要实现了 轮询、加权轮询、随机、加权随机、IPHash 参考大佬文章: https://www.cnblogs.com/wxd0108/p/5465938.html 废话不说,码上见 using System; using System.Collections.Generic; using Sys ...
分类:
编程语言 时间:
2021-05-24 09:27:18
阅读次数:
0
原题链接 题意:给出一棵树,边权全为 \(1\),要求出所有的距离为 \(k\) 的点对。 题解:暴力树上 \(dp\) 真的没想到,\(dp_{i,j}\) 代表的是距离 \(i\) 点的距离为 \(k\) 的点对数量。 代码: #include <iostream> #include <bits ...
分类:
其他好文 时间:
2021-05-24 08:40:27
阅读次数:
0
当自然数 n 依次取 1、2、3、……、N 时,算式 ?n/2?+?n/3?+?n/5? 有多少个不同的值?(注:?x? 为取整函数,表示不超过 x 的最大自然数,即 x 的整数部分。) 输入格式: 输入给出一个正整数 N(2≤N≤10?4??)。 输出格式: 在一行中输出题面中算式取到的不同值的个 ...
分类:
编程语言 时间:
2021-05-24 08:34:57
阅读次数:
0
关键字是C语言内部使用的名字,每个关键字具有对应的功能 auto break case char const continue default do double else enum extern float for goto if int long register return short si ...
分类:
其他好文 时间:
2021-05-24 05:36:24
阅读次数:
0
简介 参考链接 https://gamedev.stackexchange.com/questions/26974/repairing-back-facing-triangles-without-user-input 缺陷, 对于非流形的网格会失败 code #include <iostream> ...
分类:
其他好文 时间:
2021-05-24 02:58:37
阅读次数:
0
安装python插件 使用命令安装 pip install allure-pytes下载源码安装 https://pypi.org/project/allure-pytest/ 安装allure下载: https://bintray.com/qameta/generic/allure2 前置条件:已 ...
分类:
其他好文 时间:
2021-05-24 02:02:33
阅读次数:
0
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
using System; using System.Collections.Generic; using System.IO; using System.Text; /// <summary> /// 打印error类 /// </summary> public class LogUtil { p ...
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cmath> #include <map> #define int long long using namespace std; const int N = 100 ...
分类:
其他好文 时间:
2021-05-24 00:04:21
阅读次数:
0