码迷,mamicode.com
首页 >  
搜索关键字:air    ( 2190个结果
数据结构 03-树2 List Leaves (25 分)
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:其他好文   时间:2021-05-24 14:03:04    阅读次数:0
LeetCode第241场周赛
第一题 5759. 找出所有子集的异或总和再求和 题目链接:5759. 找出所有子集的异或总和再求和 直接爆搜,计算所有可能的子集的异或和curSum,加入到答案ans里 class Solution { private: int ans; int n; public: void dfs(vecto ...
分类:其他好文   时间:2021-05-24 13:12:47    阅读次数:0
题解:飞行路线
##题目 ####题目描述 Alice 和 Bob 现在要乘飞机旅行,他们选择了一家相对便宜的航空公司。该航空公司一共在nn个城市设有业务,设这些城市分别标记为 000 到 n?1n-1n?1,一共有 mmm 种航线,每种航线连接两个城市,并且航线有一定的价格。 Alice 和 Bob 现在要从一个 ...
分类:其他好文   时间:2021-05-24 09:23:09    阅读次数:0
方法定义、调用等、数组、多维数组及小结
什么是方法 方法定义 方法调用 方法重载 方法类型也可相同,只要参数类型不同就行, 例: public static void main(String[] args) { double sum1 = add(6.0,2); System.out.println(sum1); } public sta ...
分类:编程语言   时间:2021-05-24 07:38:03    阅读次数:0
堆排序 VS 快速排序 解决 TOP K 问题
解决 TOP k 问题通常可采用 堆排序 和 快速排序的思想 1. 大根堆(前 K 小) / 小根堆(前 K 大): 时间复杂度O(NlogK) c++ STL 中提供了 priority_queue 实现堆的基本功能,比如 priority_queue <int> pq; 堆 pq 的元素都是 i ...
分类:编程语言   时间:2021-05-24 05:41:19    阅读次数:0
xxxxxxxxxxxxxxxxxxx
1. # -*- encoding=utf8 -*- __author__ = "1003441" from airtest.core.api import * auto_setup(__file__) # 日志模块 from airtest.report.report import simple_ ...
分类:其他好文   时间:2021-05-24 04:56:48    阅读次数:0
实验三 Linux系统用户管理及VIM配置
课程:2021春季Linux系统与应用 (南昌航空大学 - 信息工程学院) https://edu.cnblogs.com/campus/nchu/2021-spring-Linux 实验要求:https://edu.cnblogs.com/campus/nchu/2021-spring-Linux ...
分类:系统相关   时间:2021-05-24 02:57:33    阅读次数:0
Typora 应用
Markdpwn 标题: 二级标题 三级标题 字体 helloword Hellowrld! Hellowrld! Hellowrld! 引用 选择狂神说Java,走向人生巅峰 分割线 图片 超链接 点击挑战小星博客 列表 a s a a s s 表格 | 代码 ? ...
分类:其他好文   时间:2021-05-24 00:45:59    阅读次数:0
[CF995F] Cowmpany Cowmpensation
\(\text{Problem}:\)Cowmpany Cowmpensation \(\text{Solution}:\) 不难发现,虽然权值种类很多,但在一种分配方案中,不同的权值个数只有 \(O(n)\) 个。故设 \(f_{i}\) 表示分配了 \(i\) 种权值的方案数,答案为: \[ \ ...
分类:其他好文   时间:2021-05-03 12:25:45    阅读次数:0
CF208E Blood Cousins(树上启发式合并)
转化题目,题目要求的是K级祖先,我们可以对于每个询问先跳到祖先,那么就是求对于这个祖先,depth[u]+k的个数是多少个,然后-1就是答案 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair ...
分类:其他好文   时间:2021-04-24 13:41:24    阅读次数:0
2190条   上一页 1 2 3 4 5 ... 219 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!