快速幂运算 HDU2035 求 http://acm.hdu.edu.cn/showproblem.php?pid=2035 题目是很简单的,因为b也不大所以时间复杂度为n的算法也能ac #include <iostream> using namespace std; int a, b; int p ...
分类:
其他好文 时间:
2021-01-01 12:58:37
阅读次数:
0
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3065 多测 卡内存 #include<iostream> #include<algorithm> #include<cstring> #include<cstdio> #include<cmath> # ...
分类:
其他好文 时间:
2020-12-30 11:37:43
阅读次数:
0
原文链接:https://www.logicbig.com/tutorials/core-java-tutorial/java-multi-threading/happens-before.html Happens-before relationship is a guarantee that ac ...
分类:
移动开发 时间:
2020-12-30 10:54:01
阅读次数:
0
webrtc-audioproc-master/modules/audio_processing/utility/fft4g.c /* * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2 ...
分类:
Web程序 时间:
2020-12-28 11:20:44
阅读次数:
0
这题费用流,题解已经说得很好了,补充一下就是这题不用拆点,(虽然我拆点了),只要现在i到i+k的流量为1就能保证每个点只用一次了 [题目链接](https://ac.nowcoder.com/acm/contest/9680#submit/%7B%22problemIdFilter%22%3A214 ...
分类:
其他好文 时间:
2020-12-22 11:54:15
阅读次数:
0
一、Spring部分 1、Spring的运行流程 第一步:加载配置文件ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml");,ApplicationContext接口,它由BeanFactory接口派生而来,因 ...
分类:
其他好文 时间:
2020-12-21 11:09:13
阅读次数:
0
AT2402E是一个完全集成的、单芯片、单芯片的RFeIC(RF前端集成电路)。 AT2402E架构集成了PA、LNA、传输和接收交换电路、相关匹配网络和谐波滤波器全部采用CMOS单片器件。 此RFeIC设计用于802.11b/g/n/ac应用程序工作频率2.4GHz。性能优越,灵敏度高而且效率高, ...
分类:
其他好文 时间:
2020-12-19 13:40:48
阅读次数:
8
#【日常摸鱼】IOI2014 ##前言 摸鱼~~ ##Rail ###链接 http://uoj.ac/problem/24 ###题解 问题是好想的,因为 $3(n-1)$ 次询问确实搞不出什么花样。 第一轮肯定是询问所有点到 $0$ 的距离,记为 \(dis(i)\) 。最近的点一定是离 $0$ ...
分类:
其他好文 时间:
2020-12-16 12:31:52
阅读次数:
2
515. 在每个树行中找最大值 Difficulty: 中等 您需要在二叉树的每一行中找到最大的值。 示例: 输入: 1 / \ 3 2 / \ \ 5 3 9 输出: [1, 3, 9] Solution Language: **** BFS+queue实现层序遍历,十分easy,一次AC。 # ...
分类:
其他好文 时间:
2020-12-11 12:12:45
阅读次数:
4
模板题:https://loj.ac/p/129 知识点:是while不是if 待填坑 code: #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int MAXN = 2e6 + ...
分类:
其他好文 时间:
2020-12-07 12:32:21
阅读次数:
7