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

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

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

  • 1:CF(438D) The Child and Sequence(线段树)

                        题意:对数列有三种操作:Print operation l,?r. Picks should write down the value of .Modulo operation l,?r,?x. Picks should perform assignment a[

    https://www.u72.net/daima/kch6.html - 2024-07-06 20:42:55 - 代码库
  • 2:hdu 1698 Just a Hook(线段树区间修改)

                         In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several con

    https://www.u72.net/daima/h9we.html - 2024-08-13 20:38:22 - 代码库
  • 3:精妙的线段树区间修改部分注释

                        #include<algorithm>#include<cstdio>#include<cstring>#include<cstdlib>#include<iostream>#include<vector>#include<queue>#include<stack>#includ

    https://www.u72.net/daima/h4x8.html - 2024-08-13 16:50:56 - 代码库
  • 4:POJ 2750 Potted Flower (线段树区间合并)

                          开始懵逼找不到解法,看了网上大牛们的题解才发现是区间合并。。。   给你n个数形成一个数列环,然后每次进行一个点的修改,并输出这个数列的最大区

    https://www.u72.net/daima/zm1e.html - 2024-08-13 01:35:56 - 代码库
  • 5:CodeForces 19D Points(线段树+map)

                          开始想不通,后来看网上说是set,就有一个想法是对每个x建一个set。。。然后又想直接建立两重的set就好,最后发现不行,自己想多了。。。   题意是给你

    https://www.u72.net/daima/zm2e.html - 2024-08-13 01:38:04 - 代码库
  • 6:HDU 3642 Get The Treasury (线段树扫描线)

                        题意:给你一些长方体,问你覆盖三次及以上的体积有多大 首先我们观察x轴y轴一样很大,但是z轴很小,所以我们可以枚举z轴(-500,500),注意我们枚举的是每一段长度

    https://www.u72.net/daima/dc0m.html - 2024-08-15 01:42:02 - 代码库
  • 7:HDU1166 线段树(最基础题)

                          1、写法一: 1 #include <iostream> 2 #include <string.h> 3 #include <stdio.h> 4  5 using namespace std; 6  7 int numv[50005<<2]; 8 in

    https://www.u72.net/daima/drdu.html - 2024-07-07 21:52:48 - 代码库
  • 8:Help with Intervals(集合的交并补,线段树)

                        很早以前做过这题,早就没印象了,估计当时也是照着某大神的代码抄过的,现在是连题意都看了好长时间。刚开始的S集合是空集,给你一些操作和一个T集合,把操作的

    https://www.u72.net/daima/kv3n.html - 2024-07-07 00:56:20 - 代码库
  • 9:hdu1698(线段树的区间替换)

                        HDU1698 #include <bits/stdc++.h>using namespace std;#define Maxn 1001000*4struct Node{    int lt,rt,val;}A[Maxn];int j = 1;void Build(int i,

    https://www.u72.net/daima/k04z.html - 2024-08-14 10:33:38 - 代码库
  • 10:HDU 4063 线段与圆相交+最短路

                        AircraftTime Limit: 10000/3000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 980    Accepted Submission

    https://www.u72.net/daima/cc6f.html - 2024-07-10 22:45:38 - 代码库
  • 11:[HDOJ3308]LCIS(线段树,区间合并)

                        题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3308题意:给定n个数,两个操作:U A B:将位置A的数值改成BQ A B:查询[A,B]内最长连续上升子序列的长度。

    https://www.u72.net/daima/b732.html - 2024-08-16 09:00:24 - 代码库
  • 12:hdu--3308 LCIS(线段树+区间合并)

                        DescriptionGiven n integers. You have two operations: U A B: replace the Ath number by B. (index counting from 0) Q A B: output the le

    https://www.u72.net/daima/r9f8.html - 2024-08-19 12:58:36 - 代码库
  • 13:poj--3667 Hotel(线段树+区间合并)

                        DescriptionThe cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores o

    https://www.u72.net/daima/sz63.html - 2024-08-19 21:20:06 - 代码库
  • 14:HDU 4902 Nice boat(线段树 区间更新)

                        题意:给你一个区间,每次可以进行两种操作1:把区间中的数全都变成x 2:把区间中大于x的数变成gcd(a[i], x)最后输出序列。(n,m<=10^6)时限 15s,暴力也能过

    https://www.u72.net/daima/wh15.html - 2024-07-15 20:32:10 - 代码库
  • 15:线段树)

                        题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=4027题意:给一个数组序列, 数组长度为100000,现在有两种操作, 一种操作是将某一个固定区间所有数开

    https://www.u72.net/daima/wdun.html - 2024-08-25 03:57:36 - 代码库
  • 16:HDU2795 Billboard 【线段树】+【单点更新】

                        BillboardTime Limit: 20000/8000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 9632    Accepted Submissio

    https://www.u72.net/daima/wnks.html - 2024-07-15 18:22:37 - 代码库
  • 17:HDU 1754 I Hate It (线段树 单点更新)

                        题目链接中文题意,与上题类似。 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 #include <cstdlib> 6 #inclu

    https://www.u72.net/daima/wnc7.html - 2024-07-15 18:30:33 - 代码库
  • 18:HDU-4866-Shooting(函数式线段树)

                        Problem DescriptionIn the shooting game, the player can choose to stand in the position of [1, X] to shoot, you can shoot all the nearest K

    https://www.u72.net/daima/uu45.html - 2024-07-14 03:58:19 - 代码库
  • 19:hdoj 1698 Just a Hook 【线段树 区间更新】

                        题目大意:有一段链子,初始的时候是铜的(价值为1),n代表有n段(1~n),输入a, b, c三个数分别表示将从a到b的链子的价值改为c, 最后问你经过多次改变之后

    https://www.u72.net/daima/w0fr.html - 2024-07-16 06:37:21 - 代码库
  • 20:POJ A Simple Problem with Integers 【线段树,区间更新】

                        题意:你有N个整数,A1,A2,…,一个。你需要处理两种类型的操作。一种类型的操作是添加了一些给定的数字,每个数字在一个给定的时间间隔。另一种是在给定的

    https://www.u72.net/daima/w0xu.html - 2024-07-16 06:50:34 - 代码库