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

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

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

  • 1:HDU 1166 敌兵布阵(单点更新线段树)

                        经典入门题中文题...题意略...数据小 可以单点更新 区间求和 1 #define lson l, m, rt<<1 2 #define rson m+1, r, rt<<1|1   3 int sum[500005]; 4 vo

    https://www.u72.net/daima/7hwb.html - 2024-07-25 02:00:41 - 代码库
  • 2:PKU 2823 Sliding Window(线段树||RMQ||单调队列)

                        #include<cstdio>#include<algorithm>#define maxn 1000005#define inf 0x3f3f3f3fusing namespace std;int Segtree_min[maxn<<2],Segtree_max[

    https://www.u72.net/daima/4355.html - 2024-09-05 05:14:42 - 代码库
  • 3:hdu1542 线段树+扫描线+离散化

                        只想说题目给的欲实际不服     还是这类型的水题吧   建议看之前我写的那个#include<stdio.h>#include<string.h>#include<algorithm>#include<ios

    https://www.u72.net/daima/9d08.html - 2024-07-27 06:06:36 - 代码库
  • 4:XMU 1607 nc与点对距离 【线段树】

                        1607: nc与点对距离Time Limit: 5000 MS  Memory Limit: 512 MBSubmit: 60  Solved: 8[Submit][Status][Web Board]Descriptionnc最近很无聊~所

    https://www.u72.net/daima/mrk8.html - 2024-09-16 19:25:47 - 代码库
  • 5:HZAU 1207 Candies(线段树区间查询 区间修改)

                        【题目链接】http://acm.hzau.edu.cn/problem.php?id=1207【题意】给你一个字符串,然后两种操作:1,将区间L,R更新为A或者B,2,询问区间L,R最长的连续的B为多

    https://www.u72.net/daima/mscm.html - 2024-09-16 21:08:47 - 代码库
  • 6:HDU 5068 Harry And Math Teacher 线段树+矩阵乘法

                        题意:  一栋楼有n层,每一层有2个门,每层的两个门和下一层之间的两个门之间各有一条路(共4条)。  有两种操作:   0 x y : 输出第x层到第y层的路径数量

    https://www.u72.net/daima/mvf7.html - 2024-07-29 14:16:50 - 代码库
  • 7:poj2828 buy tickets(线段树单点更新)

                        题目链接:huangjing思路:因为给出了n条插入,所以如果正推的话,那么后面插的会影响到最后所在的位置,所以考虑逆序解决,那么如果此人站在第i个人的位置,那么这

    https://www.u72.net/daima/8r86.html - 2024-07-26 08:29:13 - 代码库
  • 8:hdu4366 Successor (dfs序+zkw线段树)

                        SuccessorTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2559    Accepted Submissio

    https://www.u72.net/daima/81sx.html - 2024-07-26 14:45:56 - 代码库
  • 9:【HDU-4614】Vases and Flowers(线段树双查询)

                        119463172014-10-23 09:08:28Accepted4614437MS2348K3340 BG++KinderRiven#include<cstdio>#include<cstring>#include<iostream>#include<

    https://www.u72.net/daima/e31k.html - 2024-07-28 18:50:42 - 代码库
  • 10:poj3304计算几何直线与线段关系

                        Given n segments in the two dimensional space, write a program, which determines if there exists a line such that after projecting these seg

    https://www.u72.net/daima/9sa4.html - 2024-09-13 09:39:53 - 代码库
  • 11:【BZOJ 3747】 3747: [POI2015]Kinoman (线段树)

                        3747: [POI2015]KinomanTime Limit: 60 Sec  Memory Limit: 128 MBSubmit: 830  Solved: 338Description共有m部电影,编号为1~m,第i部电影的好看值

    https://www.u72.net/daima/9rd3.html - 2024-09-13 08:24:48 - 代码库
  • 12:POJ3264 Balanced Lineup 【线段树】+【单点更新】

                        Balanced LineupTime Limit: 5000MS Memory Limit: 65536KTotal Submissions: 32778 Accepted: 15425Case Time Limit: 2000MS

    https://www.u72.net/daima/mc4d.html - 2024-09-16 18:41:08 - 代码库
  • 13:arcmap 设置线段的不同颜色(及其他转化)

                        一: shp 转化为 mxd或导出地图 当时做的第一个shp文件,应该是研一的第二个学期了,都不记得是怎么操作的了;通过file另存为mxd即可生成各个shp的arcmap可以

    https://www.u72.net/daima/euhe.html - 2024-07-28 12:07:31 - 代码库
  • 14:[HDOJ3911]Black And White(线段树,区间合并)

                        题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3911题意:一个01串,两种操作:0 a b:查询[a,b]内连续1的最长长度。1 a b:翻转[a,b]内的所有数字(0变1,1变

    https://www.u72.net/daima/be1d.html - 2024-08-16 11:11:58 - 代码库
  • 15:HDU 5091---Beam Cannon(线段树+扫描线)

                        题目链接http://acm.hdu.edu.cn/showproblem.php?pid=5091 Problem DescriptionRecently, the γ galaxies broke out Star Wars. Each planet is

    https://www.u72.net/daima/b8e8.html - 2024-08-16 09:58:29 - 代码库
  • 16:ZOJ 3633 Alice's present(线段树)

                        As a doll master, Alice owns a wide range of dolls, and each of them has a number tip on it‘s back, the tip can be treated as a positive in

    https://www.u72.net/daima/nards.html - 2024-07-30 13:14:47 - 代码库
  • 17:[HDU1754]I Hate It线段树裸题

                        http://acm.hdu.edu.cn/showproblem.php?pid=1754解题关键:刚开始死活超时,最后发现竟然是ch,和t1、t2每次循环都定义的锅,以后养成建全局变量的习惯。注意

    https://www.u72.net/daima/nnnsc.html - 2024-09-19 18:40:48 - 代码库
  • 18:POJ3468(KB7-C 线段树)

                        A Simple Problem with IntegersTime Limit: 5000MS  Memory Limit: 131072KTotal Submissions: 108903   Accepted: 33919Case Time Limit: 2000MS

    https://www.u72.net/daima/nz976.html - 2024-09-23 00:49:19 - 代码库
  • 19:(线段树)

                        Problem DescriptionThere are n types of cells in the lab, numbered from 1 to n. These cells are put in a queue, the i-th cell belongs t

    https://www.u72.net/daima/nze77.html - 2024-09-23 02:18:33 - 代码库
  • 20:Cf 444C DZY Loves Colors(线段树)

                        DZY loves colors, and he enjoys painting.On a colorful day, DZY gets a colorful ribbon, which consists of n units (they are numbered from 1

    https://www.u72.net/daima/nz87w.html - 2024-08-02 05:42:38 - 代码库