AGC 043 C,D 题解 C - Giant Graph 首先可以理解成一个$N\times N\times N$的立方体从$(N,N,N)$开始按照$x+y+z$降序贪心添加。 一个点不被选当且仅当按照$x,y,z$某一个方向可以到达一个选择的。 直接用$SG$函数即可。 由于$SG$的值域是 ...
分类:
其他好文 时间:
2021-05-24 15:26:40
阅读次数:
0
首先需要引用alipayer js和css 页面使用的引用方式不同 <template> <div :id="playerId"style="width:100%; height:100%;"> </div></template> <script> export default { name: 'R ...
分类:
其他好文 时间:
2021-05-24 11:00:02
阅读次数:
0
static void Main(string[] args) { //Console.WriteLine("Hello World!"); //ShowInt(10); //ShowString("test"); //ShowDateTime(DateTime.Now); //ShowObject ...
分类:
其他好文 时间:
2021-05-24 04:48:03
阅读次数:
0
「CF 1520A」Do Not Be Distracted! Link. 模拟。 #include<bits/stdc++.h> char now; char get_char(){char res=getchar();while(res<'A' || res>'Z') res=getchar() ...
分类:
其他好文 时间:
2021-05-24 02:42:17
阅读次数:
0
一、datetime模块 12 # datetime模块可以看成是时间加减的模块import datetime 12 # 返回当前时间print(datetime.datetime.now()) 1 2019-03-07 16:22:14.544130 1 print(datetime.date.f ...
分类:
其他好文 时间:
2021-05-24 00:49:07
阅读次数:
0
命令行 安装软件包 [root@localhost ~]# yum install cobbler cobbler-web dhcp pykickstart -y 开机启动 [root@localhost ~]# systemctl enable --now cobblerd httpd tftp ...
分类:
其他好文 时间:
2021-05-03 12:35:24
阅读次数:
0
最近碰到一个奇怪问题,调用第三方接口时,返回{resultCode=INVALID_PARAMETER, resultMsg=too long time span between now and req_time}, 参数异常,请求时间离现在时间太久. 于是把参数打印出来,一切正常,参数也就一个流程 ...
分类:
其他好文 时间:
2021-04-30 12:08:57
阅读次数:
0
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; int main() { int n, t, num = 0; string now; cin >> n >> t; getchar(); for (int i = 1; i ...
分类:
其他好文 时间:
2021-04-27 15:16:28
阅读次数:
0
1. 背景 在一些项目中,有时候会出现不同模块重复请求大量相同api接口的情况,特别是在一些功能相似的后台管理页面中。以下面这几个页面为例,每次进入页面都需要请求等大量重复的下拉框数据,下拉框数据短时间内改动不大,但也不能在前端使用静态数据,所以可以考虑在前端进行数据缓存,避免重复请求api。 2. ...
function backToTop () { cancelAnimationFrame(timer); // 获取当前毫秒数 const startTime = Date.now(); // 获取当前页面的滚动高度 const scrollTop = document.body.scrollTop ...
分类:
其他好文 时间:
2021-04-23 12:07:09
阅读次数:
0