码迷,mamicode.com
首页 >  
搜索关键字:nyoj 630 problem of    ( 39118个结果
AcWing95 费解的开关 (递推)
题目链接:https://www.acwing.com/problem/content/description/97/ 有几个重要性质: 每个位置最多被点击一次 若第一行状态固定,那么满足题目要求的点击方案最多只有一种 点击的先后顺序不影响最终结果 于是将每行的状态用二进制数存储,枚举第一行的点击状 ...
分类:Windows程序   时间:2020-11-01 21:30:31    阅读次数:28
大学ACM第二周心得
小小分个类 #一:图论 ##1. tarjan 这里推荐这篇博客:[https://blog.csdn.net/mengxiang000000/article/details/51672725] ####例:受欢迎的牛[https://www.luogu.com.cn/problem/P2341] ...
分类:其他好文   时间:2020-11-01 21:28:37    阅读次数:18
Exploiting Choice: Instruction Fetch and Issue on an Implementable Simultaneous Multithreading Processor(2)
##Time 2020.10.31 Summary Research Objective Problem Statement Method(s) The methodology in this paper closely follows the simulation and measurement ...
分类:其他好文   时间:2020-11-01 10:33:43    阅读次数:17
AcWing91 最短Hamilton路径 (状压dp)
https://www.acwing.com/problem/content/93/ \(dp[S][i]\) 表示经过点的状态为 \(S\) , 当前在 \(i\) 点时的最短路 时间复杂度$O(n2*2n)$ #include<cstdio> #include<cstring> #include ...
分类:Windows程序   时间:2020-11-01 10:21:43    阅读次数:26
P4551 最长异或路径(01trie模板)
间隙 大致题意 给定一棵$n$个点的带权树,求最长的异或路径。 异或路径指的是指两个结点之间唯一路径上的所有边权的异或 $1≤n≤100000$ 分析 01trie模板 设$f_i$表示从根节点到$i$节点的异或路径,有显然的递推公式:\(f_v = f_{fa}⊕edge.w\) 根据异或的性质, ...
分类:其他好文   时间:2020-11-01 10:21:19    阅读次数:16
CSP-S2周末刷题班(第四场)
A. 挑战 时间限制: 1.0 秒 空间限制: 512 MB 原题地址 题目描述 企鹅豆豆在玩一款叫做 Slay the spire 的游戏。为了简化游戏,我们将游戏规则魔改如下: 主角一开始血量为 HH,游戏里一共有 NN 个房间,每个房间里有一些怪物,第 ii 个房间需要受到 DiDi 的伤害才 ...
分类:其他好文   时间:2020-11-01 09:55:56    阅读次数:18
CodeForces - 1436D Bandit in a City
https://codeforces.com/problemset/problem/1436/D 这题就是让村名尽可能集中在叶子上,但是可能叶子上本来就有很多村民,就是这样。 假设 1. mx[x]为在x点可以抓到的最多的人 2. chal[x]为 在x点还差chal[x]人就可以让x下面所有叶子都 ...
分类:其他好文   时间:2020-10-31 01:31:44    阅读次数:13
【leetcode_easy】1486. XOR Operation in an Array
leetcode_easy_array problem 1486. XOR Operation in an Array solution #1: code: 参考 1. leetcode_1486. XOR Operation in an Array; 完 ...
分类:其他好文   时间:2020-10-30 12:53:24    阅读次数:17
【CF468B】Two Sets
题目 题目链接:https://codeforces.com/problemset/problem/468/B 给出 \(n\) 个各不相同的数字,将它们分别放入 \(A\) 和 \(B\) 两个集合中,使它们满足: 若数字 \(x\) 在集合 \(A\) 中,那么数字 \(a-x\) 也在集合 \ ...
分类:其他好文   时间:2020-10-30 12:08:18    阅读次数:14
leetcode407 Trapping rain water II
use 3D version to calculate how much water the model can contain this problem need use dfs,from the edge part which mustn't be answer,for the edge can ...
分类:移动开发   时间:2020-10-29 10:06:29    阅读次数:25
39118条   上一页 1 ... 30 31 32 33 34 ... 3912 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!