编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 102 篇代码解决方案

  • 1:hdu 5316 Magician 线段

                        链接:http://acm.hdu.edu.cn/showproblem.php?pid=5316MagicianTime Limit: 18000/9000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java

    https://www.u72.net/daima/nn433.html - 2024-09-20 23:10:31 - 代码库
  • 2:hdu5107 线段

                        hdu 5107 这题说的是给了一个二维的 平面, 平面内有30000个点每个点都有自己的高度,然后又30000次的查询,每次查询给的是(X,Y,K), 要求出set(x,y){x,y|x<=

    https://www.u72.net/daima/nkf6h.html - 2024-08-03 21:06:51 - 代码库
  • 3:hdu 5239 Doom(线段树)

                        DoomTime Limit: 12000/6000 MS (Java/Others)    Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 1401    Accepted Submission(

    https://www.u72.net/daima/nad9s.html - 2024-09-18 08:02:51 - 代码库
  • 4:线段树题之wows

                        ●模拟考试的一道似乎是学长出的题,还不错,挺考代码能力的。以此记录。●(像手纸一样长的贴图……)●题目大意:   有横向排布的n个点,每个点初始值都为0

    https://www.u72.net/daima/nhf52.html - 2024-09-23 15:54:02 - 代码库
  • 5:[数据结构]线段

                        hihocoder上的这一篇文章写得特别赞!很好理解。转载于:http://hihocoder.com/contest/hiho19/problem/1“在我介绍别的算法之前,你先来讲一讲你是准备如何

    https://www.u72.net/daima/nhv3c.html - 2024-08-03 00:16:20 - 代码库
  • 6:[数据结构]线段

                        hihocoder上的这一篇文章写得特别赞!很好理解。转载于:http://hihocoder.com/contest/hiho19/problem/1“在我介绍别的算法之前,你先来讲一讲你是准备如何

    https://www.u72.net/daima/nhx7u.html - 2024-08-03 02:10:36 - 代码库
  • 7:hdu3333(线段树)

                        区间更新,单点查询。 hdu3333 #include <iostream>#include <stdio.h>#include <string.h>#include <algorithm>#include <math.h>#include <map>#inclu

    https://www.u72.net/daima/nnu7w.html - 2024-07-31 17:47:51 - 代码库
  • 8:hdu--4339--线段

                        很多时候  平常觉得很熟悉的一样东西穿上了一件外衣 我们就不认识了  其实 还是 我们不够熟悉。这题的原型 就是给你一串由01组成的序列 可以随机修改

    https://www.u72.net/daima/ndf3v.html - 2024-08-04 22:17:29 - 代码库
  • 9:BZOJ1018线段

                        1018: [SHOI2008]堵塞的交通trafficTime Limit: 3 Sec  Memory Limit: 162 MBSubmit: 3489  Solved: 1168[Submit][Status][Discuss]Description

    https://www.u72.net/daima/ndk2e.html - 2024-09-29 06:14:39 - 代码库
  • 10:HDU 5274(LCA + 线段树)

                        Dylans loves treeTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 747    Acc

    https://www.u72.net/daima/nfvhv.html - 2024-10-07 06:40:02 - 代码库
  • 11:hdu5141 线段

                        这题说的是给了一串然后计算出这个串的最长递增子序列的长度,然后计算出有过少个子串[i,j] 他们的最长递增子序列和这整个子串的最长递增子序列相同,我们

    https://www.u72.net/daima/nfwm8.html - 2024-08-07 08:03:50 - 代码库
  • 12:HDU 2795 Billboard(线段树)

                        题目网址:http://acm.hdu.edu.cn/showproblem.php?pid=2795题目:BillboardTime Limit: 20000/8000 MS (Java/Others)    Memory Limit: 32768/32768 K

    https://www.u72.net/daima/nvh2m.html - 2024-10-28 11:16:39 - 代码库
  • 13:线段树模板(待补充)

                        先放一个吧,过两天在写几个补充完整。区间求最值:  1 #include<iostream> 2 #define LC(a)  ((a<<1)) 3 #define RC(a)  ((a<<1)+1) 4 #define MI

    https://www.u72.net/daima/nsx9u.html - 2024-10-17 22:53:39 - 代码库
  • 14:线段树之单点更新

                        单点更新,其实就是对一个点进行更新。HDU 1166   1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 #define lson l,m,r

    https://www.u72.net/daima/nu35n.html - 2024-10-25 10:46:39 - 代码库
  • 15:●【记录】今日上午○线段

                        ●poj 3225 Help with Intervals ○赘述题目: 给出以下集合操作:  然后有初始的一个空集S,和以下题目给出的操作指令,并输入指令:  要求进行指令操作后,按格

    https://www.u72.net/daima/nvcaa.html - 2024-10-29 13:39:39 - 代码库
  • 16:hdu5091 线段

                        题意: 给了n个点在平面中 n<10000  然后 将这给了一个 宽为W 高为 H 的 矩形, 然后 使得这个矩形可以 涵盖最多的点有多少个,然后矩形的宽平行x 轴高平行

    https://www.u72.net/daima/na00m.html - 2024-07-30 19:30:21 - 代码库
  • 17:线段树】HDU 4747 MEX

                        通道:http://acm.hdu.edu.cn/showproblem.php?pid=4747题意:mex(L, R)表示区间上第一个没出现的最小非负整数,对于序列a[],求所有的mex(L, R)的和思路:就是

    https://www.u72.net/daima/nnhbh.html - 2024-07-31 09:45:51 - 代码库
  • 18:USACAO Milking Cows 线段

                        背景:我是用最低效率的暴力模拟过的,竟然建了个1000000的数组,论文说只要计算量不超过2000000即可以过。学习:1.对于我这种方法可以改进,那就是对于数据的开

    https://www.u72.net/daima/nce7n.html - 2024-08-08 19:51:18 - 代码库
  • 19:线段树的基本操作

                        点更新: 1 #include <fstream>                 //点更新 2 #include <iostream> 3 #include <cstdio> 4  5 using namespace std; 6  7 const int N=10

    https://www.u72.net/daima/nbxdu.html - 2024-08-06 06:21:24 - 代码库
  • 20:hdu--5091--线段

                        自己还是没有做出来= =  我去用段树 而不是点树去做了而貌似段树不行啊。我还没想明白 ccc  1 #include <iostream>  2 #include <algorithm>  3 using

    https://www.u72.net/daima/nfneh.html - 2024-08-06 20:41:03 - 代码库