码迷,mamicode.com
首页 >  
搜索关键字:pairs    ( 1028个结果
hdu 4750 Count The Pairs 最小生成树
题意就是给出一个f值,然后假如两个点u,v间的所有路径上的最大边中的最小值大于f,那么这个点对是合法的,对于每个询问f,输出有多少个合法点对。最大边最小就是最小瓶颈路,即最小生成树上的路径。一个简单的想法就是求出最小生成树后,n次dfs求出任意两点间的最大边,然后对于每个询问再查找一遍,可是时间复杂...
分类:其他好文   时间:2014-07-16 20:59:37    阅读次数:206
Leetcode:Swap Nodes in Pairs 单链表相邻两节点逆置
Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. Y...
分类:其他好文   时间:2014-07-12 20:39:17    阅读次数:225
Pku3673
/* B - Cow Multiplication Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit Status Practice POJ 3673 Description Bessie is tired of multiplying pairs of numbers th...
分类:其他好文   时间:2014-07-12 19:19:02    阅读次数:164
Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "((()))", "(()())", "(())()", "()(())", "()()...
分类:其他好文   时间:2014-07-12 17:37:13    阅读次数:139
UVA - 471 Magic Numbers
Description  Magic Numbers  Write a program that finds and displays all pairs ofintegers and such that: neither nor have any digits repeated; and , where N is a given i...
分类:其他好文   时间:2014-07-10 20:10:06    阅读次数:238
whu oj 1551 Pairs (莫队算法)
题目大意: 给出的询问,求出这个区间的里 差小于等于 2 的数字的对数。 思路分析: 莫队算法。 然后分析一下。 如果增加了一个数字,那么就要加它旁边相差为2 的数字的和。 反之减少一个,就要减少相差为2 的数字的和,再减去自己这个1.。 #include #include #include #include #include #define max...
分类:其他好文   时间:2014-07-09 11:55:19    阅读次数:181
[LeetCode]Swap Nodes in Pairs
[LeetCode]Swap Nodes in Pairs...
分类:其他好文   时间:2014-07-08 20:40:15    阅读次数:161
【LeetCode】Swap Nodes in Pairs
题目 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant spac...
分类:其他好文   时间:2014-07-08 13:46:26    阅读次数:205
[leetcode] Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
分类:其他好文   时间:2014-06-27 12:25:27    阅读次数:721
1.7 逆序数与归并排序[inversion pairs by merge sort]
inversion pairs by merge sort
分类:其他好文   时间:2014-06-26 23:34:49    阅读次数:294
1028条   上一页 1 ... 98 99 100 101 102 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!